aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-07 16:21:41 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-10-07 16:21:41 +0900
commitbd3bb07a7f76964a3550df2e72541ece53a4bce7 (patch)
tree7ab23da83a754aa461349edd4fa07f717e3911fd /events
parentf112ce9b54d57c84fde2f858833b497a3c71984b (diff)
downloadlibquotient-bd3bb07a7f76964a3550df2e72541ece53a4bce7.tar.gz
libquotient-bd3bb07a7f76964a3550df2e72541ece53a4bce7.zip
Use Q_DECLARE_TYPEINFO correctly
The previous code had no effect because QVector<Receipt> was instantiated before Q_DECLARE_TYPEINFO occurence.
Diffstat (limited to 'events')
-rw-r--r--events/receiptevent.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/events/receiptevent.h b/events/receiptevent.h
index 028bf0f6..cf08fed9 100644
--- a/events/receiptevent.h
+++ b/events/receiptevent.h
@@ -32,6 +32,11 @@ namespace QMatrixClient
QString userId;
QDateTime timestamp;
};
+}
+Q_DECLARE_TYPEINFO(QMatrixClient::Receipt, Q_MOVABLE_TYPE);
+
+namespace QMatrixClient
+{
using Receipts = QVector<Receipt>;
class ReceiptEvent: public Event
@@ -51,6 +56,5 @@ namespace QMatrixClient
Private* d;
};
}
-Q_DECLARE_TYPEINFO(QMatrixClient::Receipt, Q_MOVABLE_TYPE);
#endif // QMATRIXCLIENT_RECEIPTEVENT_H