Bump version
Change-Id: I35df4cbd3ef8bd9aeb0bcb853c3a10e88c062713 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
parent
7293200ace
commit
ae58676102
@ -41,11 +41,11 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#define QT_VERSION_STR "5.6.0"
|
#define QT_VERSION_STR "5.7.0"
|
||||||
/*
|
/*
|
||||||
QT_VERSION is (major << 16) + (minor << 8) + patch.
|
QT_VERSION is (major << 16) + (minor << 8) + patch.
|
||||||
*/
|
*/
|
||||||
#define QT_VERSION 0x050600
|
#define QT_VERSION 0x050700
|
||||||
/*
|
/*
|
||||||
can be used like #if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0))
|
can be used like #if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0))
|
||||||
*/
|
*/
|
||||||
|
@ -527,6 +527,7 @@ void QDataStream::setByteOrder(ByteOrder bo)
|
|||||||
\value Qt_5_4 Version 16 (Qt 5.4)
|
\value Qt_5_4 Version 16 (Qt 5.4)
|
||||||
\value Qt_5_5 Same as Qt_5_4
|
\value Qt_5_5 Same as Qt_5_4
|
||||||
\value Qt_5_6 Same as Qt_5_4
|
\value Qt_5_6 Same as Qt_5_4
|
||||||
|
\value Qt_5_7 Same as Qt_5_4
|
||||||
\omitvalue Qt_DefaultCompiledVersion
|
\omitvalue Qt_DefaultCompiledVersion
|
||||||
|
|
||||||
\sa setVersion(), version()
|
\sa setVersion(), version()
|
||||||
|
@ -84,10 +84,11 @@ public:
|
|||||||
Qt_5_4 = 16,
|
Qt_5_4 = 16,
|
||||||
Qt_5_5 = Qt_5_4,
|
Qt_5_5 = Qt_5_4,
|
||||||
Qt_5_6 = Qt_5_5,
|
Qt_5_6 = Qt_5_5,
|
||||||
#if QT_VERSION >= 0x050700
|
Qt_5_7 = Qt_5_5,
|
||||||
|
#if QT_VERSION >= 0x050800
|
||||||
#error Add the datastream version for this Qt version and update Qt_DefaultCompiledVersion
|
#error Add the datastream version for this Qt version and update Qt_DefaultCompiledVersion
|
||||||
#endif
|
#endif
|
||||||
Qt_DefaultCompiledVersion = Qt_5_6
|
Qt_DefaultCompiledVersion = Qt_5_7
|
||||||
};
|
};
|
||||||
|
|
||||||
enum ByteOrder {
|
enum ByteOrder {
|
||||||
|
Loading…
Reference in New Issue
Block a user