aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb@kaidan.im>2023-03-09 17:19:21 +0100
committerLinus Jahn <lnj@kaidan.im>2023-03-18 18:52:54 +0100
commitd1a95888d6c868cdb4a064dfe4581ccf33bd92fa (patch)
tree1a6e87078a4078399ca0a0203df1f1791511b7b3 /src/client
parent5424a01f39a2db92da4e41ec8607e148d4721d89 (diff)
Fix missing exports with MSVC 2019
Fixes the Kaidan build with MSVC. Weirdly enough, MSVC got confused on finding the matching overload for <<, so I replaced it with push_back().
Diffstat (limited to 'src/client')
-rw-r--r--src/client/QXmppMamManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/QXmppMamManager.h b/src/client/QXmppMamManager.h
index 71cb4311..548d56d6 100644
--- a/src/client/QXmppMamManager.h
+++ b/src/client/QXmppMamManager.h
@@ -40,7 +40,7 @@ class QXMPP_EXPORT QXmppMamManager : public QXmppClientExtension
Q_OBJECT
public:
- struct RetrievedMessages
+ struct QXMPP_EXPORT RetrievedMessages
{
QXmppMamResultIq result;
QVector<QXmppMessage> messages;