From e9c362f8acab41f957e2ae23d4c906f9fd3af3c5 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Thu, 23 Jul 2015 07:57:27 +0000 Subject: [PATCH] Fix DBus signal signature in CContextNetworkProxy --- src/blackcore/context_network_proxy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blackcore/context_network_proxy.cpp b/src/blackcore/context_network_proxy.cpp index fb3502e21..25d651166 100644 --- a/src/blackcore/context_network_proxy.cpp +++ b/src/blackcore/context_network_proxy.cpp @@ -70,10 +70,10 @@ namespace BlackCore "textMessageSent", this, SIGNAL(textMessageSent(BlackMisc::Network::CTextMessage))); Q_ASSERT(s); s = connection.connect(serviceName, IContextNetwork::ObjectPath(), IContextNetwork::InterfaceName(), - "vatsimDataFileRead", this, SIGNAL(vatsimDataFileRead())); + "vatsimDataFileRead", this, SIGNAL(vatsimDataFileRead(int))); Q_ASSERT(s); s = connection.connect(serviceName, IContextNetwork::ObjectPath(), IContextNetwork::InterfaceName(), - "vatsimBookingsRead", this, SIGNAL(vatsimBookingsRead())); + "vatsimBookingsRead", this, SIGNAL(vatsimBookingsRead(int))); Q_ASSERT(s); s = connection.connect(serviceName, IContextNetwork::ObjectPath(), IContextNetwork::InterfaceName(), "changedRemoteAircraftModel", this, SIGNAL(changedRemoteAircraftModel(BlackMisc::Simulation::CSimulatedAircraft, BlackMisc::CIdentifier)));