summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--tools/qscxmlc/moc.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 9b73845..ffe0295 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -4,4 +4,4 @@ CONFIG += warning_clean
DEFINES += QT_NO_FOREACH QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST
-MODULE_VERSION = 5.15.12
+MODULE_VERSION = 5.15.13
diff --git a/tools/qscxmlc/moc.h b/tools/qscxmlc/moc.h
index 56aedad..2461ad2 100644
--- a/tools/qscxmlc/moc.h
+++ b/tools/qscxmlc/moc.h
@@ -33,6 +33,8 @@
#include <QtCore/qpair.h>
#include <QtCore/qjsondocument.h>
#include <QtCore/qjsonarray.h>
+#include <QtCore/private/qtools_p.h>
+
#include <ctype.h>
QT_BEGIN_NAMESPACE
@@ -123,7 +125,7 @@ struct PropertyDef
Specification gspec;
bool stdCppSet() const {
QByteArray s("set");
- s += toupper(name[0]);
+ s += QtMiscUtils::toAsciiUpper(name[0]);
s += name.mid(1);
return (s == write);
}