summaryrefslogtreecommitdiffhomepage
path: root/proto-flightgear/ftnoir_protocol_fg.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-12-18 09:05:25 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-12-18 09:12:55 +0100
commitc2f88ee8bec8cdd0ea573b54aee89a241c7d4deb (patch)
tree3b311ad8bec8c05bf82e4f7ef77ace6468798fb4 /proto-flightgear/ftnoir_protocol_fg.h
parent6167effc23b8ca8a3034f1ab465565f92c621187 (diff)
plugins: rename check_status -> initialize
It's a contract for plugin invocation that the particular function fills the role of initialization. Rename accordingly.
Diffstat (limited to 'proto-flightgear/ftnoir_protocol_fg.h')
-rw-r--r--proto-flightgear/ftnoir_protocol_fg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto-flightgear/ftnoir_protocol_fg.h b/proto-flightgear/ftnoir_protocol_fg.h
index 8ba7c7c8..f92c3072 100644
--- a/proto-flightgear/ftnoir_protocol_fg.h
+++ b/proto-flightgear/ftnoir_protocol_fg.h
@@ -43,7 +43,7 @@ class flightgear : public IProtocol
public:
void pose(const double *headpose);
QString game_name() { return otr_tr("FlightGear"); }
- module_status check_status() override;
+ module_status initialize() override;
private:
settings s;
flightgear_datagram FlightData;