diff --git a/src/blackcore/simulatorcommon.h b/src/blackcore/simulatorcommon.h index ee540d124..6abc73e90 100644 --- a/src/blackcore/simulatorcommon.h +++ b/src/blackcore/simulatorcommon.h @@ -208,9 +208,11 @@ namespace BlackCore virtual bool parseDetails(const BlackMisc::CSimpleCommandParser &parser); //! Display a debug log message based on BlackMisc::Simulation::CInterpolationAndRenderingSetup + //! remark shows log messages of functions calls void debugLogMessage(const QString &msg) const; //! Display a debug log message based on BlackMisc::Simulation::CInterpolationAndRenderingSetup + //! remark shows log messages of functions calls void debugLogMessage(const QString &funcInfo, const QString &msg) const; //! Show log messages? diff --git a/src/plugins/simulator/xplane/xswiftbusserviceproxy.h b/src/plugins/simulator/xplane/xswiftbusserviceproxy.h index f16a6056e..dcf682af6 100644 --- a/src/plugins/simulator/xplane/xswiftbusserviceproxy.h +++ b/src/plugins/simulator/xplane/xswiftbusserviceproxy.h @@ -376,9 +376,7 @@ namespace BlackSimPlugin double getSpeedBrakeRatio() const; void getSpeedBrakeRatioAsync(double *o_speedBrakeRatio); //! @} - }; - } } diff --git a/src/plugins/simulator/xplane/xswiftbustrafficproxy.cpp b/src/plugins/simulator/xplane/xswiftbustrafficproxy.cpp index 2e518d89f..6ab045752 100644 --- a/src/plugins/simulator/xplane/xswiftbustrafficproxy.cpp +++ b/src/plugins/simulator/xplane/xswiftbustrafficproxy.cpp @@ -19,7 +19,6 @@ namespace BlackSimPlugin { namespace XPlane { - CXSwiftBusTrafficProxy::CXSwiftBusTrafficProxy(QDBusConnection &connection, QObject *parent, bool dummy) : QObject(parent) { m_dbusInterface = new BlackMisc::CGenericDBusInterface(XSWIFTBUS_SERVICENAME, ObjectPath(), InterfaceName(), connection, this); @@ -119,6 +118,5 @@ namespace BlackSimPlugin { m_dbusInterface->callDBus(QLatin1String("requestRemoteAircraftData")); } - } } diff --git a/src/plugins/simulator/xplane/xswiftbustrafficproxy.h b/src/plugins/simulator/xplane/xswiftbustrafficproxy.h index 6b34602c1..c995cedca 100644 --- a/src/plugins/simulator/xplane/xswiftbustrafficproxy.h +++ b/src/plugins/simulator/xplane/xswiftbustrafficproxy.h @@ -29,7 +29,6 @@ namespace BlackSimPlugin { namespace XPlane { - /*! * Proxy object connected to a real XSwiftBus::CTraffic object via DBus */ @@ -125,7 +124,6 @@ namespace BlackSimPlugin //! \copydoc XSwiftBus::CTraffic::requestRemoteAircraftData void requestRemoteAircraftData(); }; - } }