diff options
| author | Jonah BrĂ¼chert <jbb.prv@gmx.de> | 2019-10-19 17:23:08 +0200 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2019-10-22 15:32:25 +0200 |
| commit | 876c924cde7b8fe129d0f3e1b76cf0a2de9fb856 (patch) | |
| tree | c0a8816bf3fbff9fe1c6efd229dad5897cbdf61b /examples/example_5_rpcInterface/main.cpp | |
| parent | 70dfa23900a3905285435a10fdaa97462a67016f (diff) | |
Use raw literals, range based loops and auto
Diffstat (limited to 'examples/example_5_rpcInterface/main.cpp')
| -rw-r--r-- | examples/example_5_rpcInterface/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example_5_rpcInterface/main.cpp b/examples/example_5_rpcInterface/main.cpp index 593d4dcd..967c2d86 100644 --- a/examples/example_5_rpcInterface/main.cpp +++ b/examples/example_5_rpcInterface/main.cpp @@ -39,7 +39,7 @@ int main(int argc, char *argv[]) QXmppClient client; // add RPC extension and register interface - QXmppRpcManager *manager = new QXmppRpcManager; + auto *manager = new QXmppRpcManager; client.addExtension(manager); manager->addInvokableInterface(new RemoteInterface(&client)); |
