aboutsummaryrefslogtreecommitdiff
path: root/examples/example_6_rpcClient/rpcClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_6_rpcClient/rpcClient.h')
-rw-r--r--examples/example_6_rpcClient/rpcClient.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/example_6_rpcClient/rpcClient.h b/examples/example_6_rpcClient/rpcClient.h
index 9e075441..b4d4c393 100644
--- a/examples/example_6_rpcClient/rpcClient.h
+++ b/examples/example_6_rpcClient/rpcClient.h
@@ -18,11 +18,10 @@ public:
rpcClient(QObject *parent = nullptr);
~rpcClient() override;
-private slots:
- void slotInvokeRemoteMethod();
- void slotPresenceReceived(const QXmppPresence &presence);
-
private:
+ Q_SLOT void slotInvokeRemoteMethod();
+ Q_SLOT void slotPresenceReceived(const QXmppPresence &presence);
+
QString m_remoteJid;
QXmppRpcManager *m_rpcManager;
};