diff options
| author | Linus Jahn <lnj@kaidan.im> | 2022-12-30 23:35:47 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2022-12-30 23:35:47 +0100 |
| commit | 6efebe555d30170c2ecfc2372113f342c513b0c2 (patch) | |
| tree | 146535dd164abe60d28a020a2680e17c0de2b055 /src/base/QXmppStream.h | |
| parent | 93c35b3f1260f3dfafbc77609fcadb9a40a7b97f (diff) | |
| download | qxmpp-6efebe555d30170c2ecfc2372113f342c513b0c2.tar.gz | |
Replace QXmpp::SendError with QXmppError everywhere
Part of #501.
Diffstat (limited to 'src/base/QXmppStream.h')
| -rw-r--r-- | src/base/QXmppStream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppStream.h b/src/base/QXmppStream.h index f8c4e548..464d576d 100644 --- a/src/base/QXmppStream.h +++ b/src/base/QXmppStream.h @@ -44,7 +44,7 @@ public: QFuture<QXmpp::SendResult> send(QXmppNonza &&); QFuture<QXmpp::SendResult> send(QXmppPacket &&); - using IqResult = std::variant<QDomElement, QXmpp::SendError>; + using IqResult = std::variant<QDomElement, QXmppError>; QFuture<IqResult> sendIq(QXmppIq &&); QFuture<IqResult> sendIq(QXmppPacket &&, const QString &id, const QString &to); void cancelOngoingIqs(); |
