summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-12-09 10:38:18 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-09 10:48:13 +0100
commit3a4cd70e12a0607988e6f7d4f7c0c4fbcf00af86 (patch)
treef9f00dda29d0f5a17629c3ab689562e79ff54a0c
parentda033ca3eb390539720674e843015a5c7601e0b2 (diff)
downloadqtactiveqt-3a4cd70e12a0607988e6f7d4f7c0c4fbcf00af86.tar.gz
Prospective build fix after internal API change of QMetaStringTable
The first string entered is always the class name, and it's passed to the constructor now. Change-Id: I7cf199e03cb62ddf7e41b7a4d3848332d4332c73 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
-rw-r--r--src/activeqt/container/qaxbase.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/activeqt/container/qaxbase.cpp b/src/activeqt/container/qaxbase.cpp
index ed54a57..89f6201 100644
--- a/src/activeqt/container/qaxbase.cpp
+++ b/src/activeqt/container/qaxbase.cpp
@@ -3092,8 +3092,7 @@ QMetaObject *MetaObjectGenerator::metaObject(const QMetaObject *parentObject, co
header->flags = 0;
header->signalCount = signal_list.count();
- QMetaStringTable strings;
- strings.enter(that ? QByteArray(that->className()) : className);
+ QMetaStringTable strings(that ? QByteArray(that->className()) : className);
uint offset = header->classInfoData;