diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-02-02 18:14:27 +0100 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2020-02-03 00:11:55 +0100 |
| commit | 57f1b775197aed1d32e98b0299c0999339a7d5f6 (patch) | |
| tree | ce5702781e15f3a5c438ab153edf06f51a501b29 /examples/example_9_vCard/example_9_vCard.cpp | |
| parent | 99b850a3008bbb03d3449d683adb87839f7d5c4b (diff) | |
| download | qxmpp-57f1b775197aed1d32e98b0299c0999339a7d5f6.tar.gz | |
Run clang-format also on all cpp files
Diffstat (limited to 'examples/example_9_vCard/example_9_vCard.cpp')
| -rw-r--r-- | examples/example_9_vCard/example_9_vCard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_9_vCard/example_9_vCard.cpp b/examples/example_9_vCard/example_9_vCard.cpp index 980f3e68..2ee16454 100644 --- a/examples/example_9_vCard/example_9_vCard.cpp +++ b/examples/example_9_vCard/example_9_vCard.cpp @@ -68,7 +68,7 @@ void xmppClient::rosterReceived() m_vCardManager->requestVCard(jid); } -void xmppClient::vCardReceived(const QXmppVCardIq& vCard) +void xmppClient::vCardReceived(const QXmppVCardIq &vCard) { QString bareJid = vCard.from(); qDebug() << "example_9_vCard: vCard Received:" << bareJid; @@ -79,7 +79,7 @@ void xmppClient::vCardReceived(const QXmppVCardIq& vCard) QString vCardsDir("vCards/"); QDir dir; - if(!dir.exists(vCardsDir)) + if (!dir.exists(vCardsDir)) dir.mkdir(vCardsDir); QFile file("vCards/" + bareJid + ".xml"); |
