summaryrefslogtreecommitdiffhomepage
path: root/proto-fsuipc
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-12-28 03:02:57 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-01-16 07:48:18 +0100
commit6f04e4ca46e6f2dcd3eda63529a1bbd915f7676b (patch)
tree9aeb1332980c4285396457ad9f278495064549b5 /proto-fsuipc
parent3be3bb256f3e9362f8889f0532f875c5ad3b41fb (diff)
clang-tidy fixes only
Maybe global `-Wcomma' is too harsh. There should be no functional changes whatsoever.
Diffstat (limited to 'proto-fsuipc')
-rw-r--r--proto-fsuipc/ftnoir_protocol_fsuipc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/proto-fsuipc/ftnoir_protocol_fsuipc.h b/proto-fsuipc/ftnoir_protocol_fsuipc.h
index fa8bcd45..93e73e7f 100644
--- a/proto-fsuipc/ftnoir_protocol_fsuipc.h
+++ b/proto-fsuipc/ftnoir_protocol_fsuipc.h
@@ -53,8 +53,8 @@ public:
fsuipc();
~fsuipc() override;
module_status initialize() override;
- void pose(const double* headpose);
- QString game_name() { return tr("Microsoft Flight Simulator X"); }
+ void pose(const double* headpose) override;
+ QString game_name() override { return tr("Microsoft Flight Simulator X"); }
private:
QLibrary FSUIPCLib;
double prevPosX, prevPosY, prevPosZ, prevRotX, prevRotY, prevRotZ;
@@ -69,8 +69,8 @@ class FSUIPCControls: public IProtocolDialog
Q_OBJECT
public:
FSUIPCControls();
- void register_protocol(IProtocol *) {}
- void unregister_protocol() {}
+ void register_protocol(IProtocol *) override {}
+ void unregister_protocol() override {}
private:
Ui::UICFSUIPCControls ui;
settings s;
@@ -84,8 +84,8 @@ class fsuipcDll : public Metadata
{
Q_OBJECT
- QString name() { return tr("FSUIPC -- Microsoft FS2002/FS2004"); }
- QIcon icon() { return QIcon(":/images/fs9.png"); }
+ QString name() override { return tr("FSUIPC -- Microsoft FS2002/FS2004"); }
+ QIcon icon() override { return QIcon(":/images/fs9.png"); }
};