aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2022-12-28 18:53:25 +0100
committerLinus Jahn <lnj@kaidan.im>2022-12-28 18:54:11 +0100
commitedc630df76c916a3639704fe3898782dc6516c3d (patch)
tree8103c4a2798f69e906a6c090f8105766857ebab0 /src/client
parent46995fd3fd7da4d1b035f71a1279c041b2871ffd (diff)
downloadqxmpp-edc630df76c916a3639704fe3898782dc6516c3d.tar.gz
PubSubManager: Remove "void *d;"
It seems unrealistic to me that we'll actually going to need it.
Diffstat (limited to 'src/client')
-rw-r--r--src/client/QXmppPubSubManager.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/QXmppPubSubManager.h b/src/client/QXmppPubSubManager.h
index b3e99552..37649358 100644
--- a/src/client/QXmppPubSubManager.h
+++ b/src/client/QXmppPubSubManager.h
@@ -156,9 +156,6 @@ private:
QFuture<PublishItemResult> publishItem(QXmpp::Private::PubSubIqBase &&iq);
QFuture<PublishItemsResult> publishItems(QXmpp::Private::PubSubIqBase &&iq);
static QXmpp::Private::PubSubIq<> requestItemsIq(const QString &jid, const QString &nodeName, const QStringList &itemIds);
-
- // We may need a d-ptr in the future.
- void *d = nullptr;
};
///