Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tuio_cpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pirvi-public
tuio_cpp
Commits
9963fc40
Commit
9963fc40
authored
Mar 29, 2017
by
Martin Kaltenbrunner
Browse files
Options
Downloads
Patches
Plain Diff
fix type inconsistency
parent
1ec331ad
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
TUIO/TuioBlob.cpp
+2
-2
2 additions, 2 deletions
TUIO/TuioBlob.cpp
TUIO/TuioBlob.h
+2
-2
2 additions, 2 deletions
TUIO/TuioBlob.h
with
4 additions
and
4 deletions
TUIO/TuioBlob.cpp
+
2
−
2
View file @
9963fc40
...
...
@@ -74,8 +74,8 @@ int TuioBlob::getBlobID() const{
return
blob_id
;
}
void
TuioBlob
::
setBlobID
(
long
b_id
)
{
blob_id
=
b
_id
;
void
TuioBlob
::
setBlobID
(
int
bi
)
{
blob_id
=
b
i
;
}
void
TuioBlob
::
update
(
TuioTime
ttime
,
float
xp
,
float
yp
,
float
a
,
float
w
,
float
h
,
float
f
,
float
xs
,
float
ys
,
float
rs
,
float
ma
,
float
ra
)
{
...
...
This diff is collapsed.
Click to expand it.
TUIO/TuioBlob.h
+
2
−
2
View file @
9963fc40
...
...
@@ -128,9 +128,9 @@ namespace TUIO {
/**
* Sets the Blob ID of this TuioBlob.
* @param b
_id
the new Blob ID for this TuioBlob
* @param b
i
the new Blob ID for this TuioBlob
*/
void
setBlobID
(
long
b_id
);
void
setBlobID
(
int
bi
);
/**
* Takes a TuioTime argument and assigns it along with the provided
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment