aboutsummaryrefslogtreecommitdiff
path: root/examples/example_5_rpcInterface/remoteinterface.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-08-11 05:19:18 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-08-11 05:19:18 +0000
commit6e94acdba03676698f4a8ffb500691888c5aae34 (patch)
tree5b003430254f14e94ffaeb6b7d5059d943889056 /examples/example_5_rpcInterface/remoteinterface.cpp
parentf4033530b9c57a642f6d8a5c9cfa5aa4a21316da (diff)
silence a compiler warning
Diffstat (limited to 'examples/example_5_rpcInterface/remoteinterface.cpp')
-rw-r--r--examples/example_5_rpcInterface/remoteinterface.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/example_5_rpcInterface/remoteinterface.cpp b/examples/example_5_rpcInterface/remoteinterface.cpp
index 77d52384..38b6d225 100644
--- a/examples/example_5_rpcInterface/remoteinterface.cpp
+++ b/examples/example_5_rpcInterface/remoteinterface.cpp
@@ -6,6 +6,7 @@ RemoteInterface::RemoteInterface(QObject *parent) : QXmppInvokable(parent)
bool RemoteInterface::isAuthorized( const QString &jid ) const
{
+ Q_UNUSED(jid);
return true;
}