From 35ad1f472fd71e6c522b520e71ef1aca69da9c88 Mon Sep 17 00:00:00 2001 From: Pekka Vuorela Date: Tue, 7 Jul 2015 15:51:31 +0300 Subject: [PATCH] Remove slot on methods called statically --- connd/qconnectionagent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connd/qconnectionagent.h b/connd/qconnectionagent.h index 0c65fc3..fb33239 100644 --- a/connd/qconnectionagent.h +++ b/connd/qconnectionagent.h @@ -113,6 +113,8 @@ public Q_SLOTS: }; explicit QConnectionAgent(QObject *parent = 0); + void setup(); + void updateServices(); bool isStateOnline(const QString &state); bool isBestService(NetworkService *service); QString findBestConnectableService(); @@ -145,14 +147,12 @@ public Q_SLOTS: private slots: void onScanFinished(); - void updateServices(); void serviceErrorChanged(const QString &error); void serviceStateChanged(const QString &state); void networkStateChanged(const QString &state); void connmanAvailabilityChanged(bool b); - void setup(); void servicesError(const QString &); void technologyPowerChanged(bool); void browserRequest(const QString &servicePath, const QString &url);