aboutsummaryrefslogtreecommitdiff
path: root/examples/example_5_rpcInterface/remoteinterface.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2020-02-02 18:14:27 +0100
committerLNJ <lnj@kaidan.im>2020-02-03 00:11:55 +0100
commit57f1b775197aed1d32e98b0299c0999339a7d5f6 (patch)
treece5702781e15f3a5c438ab153edf06f51a501b29 /examples/example_5_rpcInterface/remoteinterface.cpp
parent99b850a3008bbb03d3449d683adb87839f7d5c4b (diff)
downloadqxmpp-57f1b775197aed1d32e98b0299c0999339a7d5f6.tar.gz
Run clang-format also on all cpp files
Diffstat (limited to 'examples/example_5_rpcInterface/remoteinterface.cpp')
-rw-r--r--examples/example_5_rpcInterface/remoteinterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_5_rpcInterface/remoteinterface.cpp b/examples/example_5_rpcInterface/remoteinterface.cpp
index 38b6d225..35132a21 100644
--- a/examples/example_5_rpcInterface/remoteinterface.cpp
+++ b/examples/example_5_rpcInterface/remoteinterface.cpp
@@ -4,13 +4,13 @@ RemoteInterface::RemoteInterface(QObject *parent) : QXmppInvokable(parent)
{
}
-bool RemoteInterface::isAuthorized( const QString &jid ) const
+bool RemoteInterface::isAuthorized(const QString &jid) const
{
Q_UNUSED(jid);
return true;
}
-QString RemoteInterface::echoString(const QString& message)
+QString RemoteInterface::echoString(const QString &message)
{
return "Echo: " + message;
}