diff options
-rw-r--r-- | ftnoir_protocol_ftn/ftnoir_protocol_ftn.h | 6 | ||||
-rw-r--r-- | ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h b/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h index 31247d1e..4c1c34cd 100644 --- a/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h +++ b/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h @@ -93,9 +93,9 @@ public: FTNoIR_ProtocolDll(); ~FTNoIR_ProtocolDll(); - void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("FaceTrackNoIR"); } - void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("FTN Client"); } - void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("FaceTrackNoIR Client protocol"); } + void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("UDP"); } + void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("UDP"); } + void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("opentrack UDP protocol"); } void getIcon(QIcon *icon) { *icon = QIcon(":/images/facetracknoir.png"); } }; diff --git a/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp b/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp index dcdbe487..7d7b7c81 100644 --- a/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp +++ b/ftnoir_tracker_udp/ftnoir_tracker_udp_dll.cpp @@ -28,9 +28,9 @@ FTNoIR_TrackerDll::FTNoIR_TrackerDll() { //populate the description strings - trackerFullName = "FaceTrackNoIR UDP"; + trackerFullName = "UDP"; trackerShortName = "UDP"; - trackerDescription = "FaceTrackNoIR UDP"; + trackerDescription = "opentrack UDP client"; } FTNoIR_TrackerDll::~FTNoIR_TrackerDll() |