From ecc4c787a132580548cc196b1dc577a3b98960cd Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Sat, 9 May 2015 23:24:47 +0100 Subject: [PATCH] refs #413 Fixed parameter type mismatch between signal of XBus::CService and CXBusServiceProxy. This fixes a regression introduced because QList and CSequence now have different dbus signatures. --- src/plugins/simulator/xplane/xbus_service_proxy.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/plugins/simulator/xplane/xbus_service_proxy.h b/src/plugins/simulator/xplane/xbus_service_proxy.h index 73587682f..8c3cafaf4 100644 --- a/src/plugins/simulator/xplane/xbus_service_proxy.h +++ b/src/plugins/simulator/xplane/xbus_service_proxy.h @@ -22,9 +22,6 @@ namespace BlackSimPlugin namespace XPlane { - //! Typedef needed to use CSequence as a DBus argument - typedef BlackMisc::CSequence CDoubleSequence; - /*! * Proxy object connected to a real XBus::CService object via DBus */ @@ -81,7 +78,7 @@ namespace BlackSimPlugin void aircraftModelChanged(const QString &path, const QString &filename, const QString &livery, const QString &icao); //! \copydoc XBus::CService::airportsInRangeUpdated - void airportsInRangeUpdated(const QStringList &icaoCodes, const QStringList &names, const CDoubleSequence &lats, const CDoubleSequence &lons, const CDoubleSequence &alts); + void airportsInRangeUpdated(const QStringList &icaoCodes, const QStringList &names, const QList &lats, const QList &lons, const QList &alts); public slots: //! \copydoc XBus::CService::updateAirportsInRange