diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-16 23:30:47 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-17 03:16:11 +0200 |
commit | da46cf18a2c7ad56c53e9c02014f75c818d39ea3 (patch) | |
tree | 4fd27ab33e03ecff2859c363e2cd77b69791ec71 /ftnoir_protocol_ftn/ftnoir_protocol_ftn.h | |
parent | 8905749b7949f10a3635faa13b44cba01a6edbe4 (diff) |
change protocol ABI: sprinkle const. ABI BREAKAGE!
Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
Diffstat (limited to 'ftnoir_protocol_ftn/ftnoir_protocol_ftn.h')
-rw-r--r-- | ftnoir_protocol_ftn/ftnoir_protocol_ftn.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h b/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h index 4c1c34cd..4e814ddf 100644 --- a/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h +++ b/ftnoir_protocol_ftn/ftnoir_protocol_ftn.h @@ -45,7 +45,7 @@ public: FTNoIR_Protocol(); ~FTNoIR_Protocol(); bool checkServerInstallationOK(); - void sendHeadposeToGame( double *headpose, double *rawheadpose ); + void sendHeadposeToGame(const double *headpose); QString getGameName() { return "UDP Tracker"; } @@ -65,9 +65,9 @@ public: explicit FTNControls(); virtual ~FTNControls(); - void showEvent ( QShowEvent * event ); + void showEvent (QShowEvent *); void Initialize(QWidget *parent); - void registerProtocol(IProtocol *protocol) {} + void registerProtocol(IProtocol *) {} void unRegisterProtocol() {} private: |