From 01674860ac85a42eb152092c6e99f7ad03346977 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Mon, 2 Jan 2012 17:16:04 +0100 Subject: [PATCH] Marked QUuid as Q_MOVABLE_TYPE in the metatype system. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3d343b71294ad5640636694d1a079ea9dcca6348 Reviewed-by: Jędrzej Nowacki Reviewed-by: Robin Burchell Reviewed-by: Olivier Goffart Reviewed-by: Prasanth Ullattil --- src/corelib/plugin/quuid.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/corelib/plugin/quuid.h b/src/corelib/plugin/quuid.h index b941079df0..4557199dc3 100644 --- a/src/corelib/plugin/quuid.h +++ b/src/corelib/plugin/quuid.h @@ -184,6 +184,8 @@ struct Q_CORE_EXPORT QUuid uchar data4[8]; }; +Q_DECLARE_TYPEINFO(QUuid, Q_MOVABLE_TYPE); + #ifndef QT_NO_DATASTREAM Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QUuid &); Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QUuid &);