From: Jędrzej Nowacki Date: Tue, 8 May 2012 09:59:56 +0000 (+0200) Subject: Bump moc revision after introducing QMetaType::SChar. X-Git-Tag: 071012110112~1131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a1a13a81b7e4b8f3d159f7a9b78f93c0a4eca66;p=profile%2Fivi%2Fqtbase.git Bump moc revision after introducing QMetaType::SChar. Normally we do not have to change moc version if a new type is added, but for this particular case we need to do it. It is so because the old moc could generate wrong type id (QMetaType::Char) for signed char. Change-Id: I20be2a24adc59a305674595dafe23fb1774b475d Reviewed-by: Kent Hansen --- diff --git a/src/corelib/kernel/qobjectdefs.h b/src/corelib/kernel/qobjectdefs.h index b9a118e..567157b 100644 --- a/src/corelib/kernel/qobjectdefs.h +++ b/src/corelib/kernel/qobjectdefs.h @@ -58,7 +58,7 @@ typedef QArrayData QByteArrayData; class QString; #ifndef Q_MOC_OUTPUT_REVISION -#define Q_MOC_OUTPUT_REVISION 66 +#define Q_MOC_OUTPUT_REVISION 67 #endif // The following macros are our "extensions" to C++ diff --git a/src/tools/moc/outputrevision.h b/src/tools/moc/outputrevision.h index 590728d..faf913f 100644 --- a/src/tools/moc/outputrevision.h +++ b/src/tools/moc/outputrevision.h @@ -43,6 +43,6 @@ #define OUTPUTREVISION_H // if the output revision changes, you MUST change it in qobjectdefs.h too -enum { mocOutputRevision = 66 }; // moc format output revision +enum { mocOutputRevision = 67 }; // moc format output revision #endif // OUTPUTREVISION_H