Skip to content
Snippets Groups Projects
Commit 9963fc40 authored by Martin Kaltenbrunner's avatar Martin Kaltenbrunner
Browse files

fix type inconsistency

parent 1ec331ad
Branches
No related tags found
No related merge requests found
......@@ -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 = bi;
}
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) {
......
......@@ -128,9 +128,9 @@ namespace TUIO {
/**
* Sets the Blob ID of this TuioBlob.
* @param b_id the new Blob ID for this TuioBlob
* @param bi 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment