aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-09-30 14:29:05 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-05 10:41:32 +0200
commit435902aa542e09d5701a7e76c967e0b7f5107fb4 (patch)
tree4645ab8771314e524fff90a96b55ede245fc0689 /src
parentfc82364404a232607ff11ea1c4cda99abc722e85 (diff)
Declarative: Compile on Windows.
Initial-patch-by: Kent Hansen <kent.hansen@nokia.com> Change-Id: Ieb7ff0537b641597fd0334ae1cb359f89c45ad50 Reviewed-on: http://codereview.qt-project.org/5871 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/declarative/qml/qdeclarativeengine_p.h6
-rw-r--r--src/declarative/qml/qdeclarativeincubator.cpp2
-rw-r--r--src/declarative/qml/qdeclarativeincubator_p.h7
3 files changed, 9 insertions, 6 deletions
diff --git a/src/declarative/qml/qdeclarativeengine_p.h b/src/declarative/qml/qdeclarativeengine_p.h
index 03d56e2804..71d6220860 100644
--- a/src/declarative/qml/qdeclarativeengine_p.h
+++ b/src/declarative/qml/qdeclarativeengine_p.h
@@ -195,7 +195,11 @@ public:
// Unfortunate workaround to avoid a circular dependency between
// qdeclarativeengine_p.h and qdeclarativeincubator_p.h
- struct Incubator { QIntrusiveListNode next; };
+ struct Incubator {
+ QIntrusiveListNode next;
+ // Unfortunate workaround for MSVC
+ QIntrusiveListNode nextWaitingFor;
+ };
QIntrusiveList<Incubator, &Incubator::next> incubatorList;
unsigned int incubatorCount;
QDeclarativeIncubationController *incubationController;
diff --git a/src/declarative/qml/qdeclarativeincubator.cpp b/src/declarative/qml/qdeclarativeincubator.cpp
index ff0712d3bb..ed75c9a1eb 100644
--- a/src/declarative/qml/qdeclarativeincubator.cpp
+++ b/src/declarative/qml/qdeclarativeincubator.cpp
@@ -525,7 +525,7 @@ void QDeclarativeIncubator::forceCompletion()
QDeclarativeVME::Interrupt i;
while (Loading == status()) {
while (Loading == status() && !d->waitingFor.isEmpty())
- d->waitingFor.first()->incubate(i);
+ static_cast<QDeclarativeIncubatorPrivate *>(d->waitingFor.first())->incubate(i);
if (Loading == status())
d->incubate(i);
}
diff --git a/src/declarative/qml/qdeclarativeincubator_p.h b/src/declarative/qml/qdeclarativeincubator_p.h
index e736aabd5c..e71602acfc 100644
--- a/src/declarative/qml/qdeclarativeincubator_p.h
+++ b/src/declarative/qml/qdeclarativeincubator_p.h
@@ -81,10 +81,9 @@ public:
QDeclarativeVME vme;
QDeclarativeVMEGuard vmeGuard;
- typedef QDeclarativeIncubatorPrivate QIP;
- QIP *waitingOnMe;
- QIntrusiveListNode nextWaitingFor;
- QIntrusiveList<QIP, &QIP::nextWaitingFor> waitingFor;
+ QDeclarativeIncubatorPrivate *waitingOnMe;
+ typedef QDeclarativeEnginePrivate::Incubator QIPBase;
+ QIntrusiveList<QIPBase, &QIPBase::nextWaitingFor> waitingFor;
void clear();