summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeobjectscriptclass.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-03-12 04:08:14 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-03-12 04:08:14 (GMT)
commitdf861cb0f6d6ae0b6971342adc199be7d7ec6009 (patch)
tree83b7bd93603f8819e7ac05cb0081643e76415dec /src/declarative/qml/qdeclarativeobjectscriptclass.cpp
parent45ef66f690966eb39b3b8ebef1708e1b87c55140 (diff)
downloadQt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.zip
Qt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.tar.gz
Qt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.tar.bz2
Fix crash on 32-bit platforms
Diffstat (limited to 'src/declarative/qml/qdeclarativeobjectscriptclass.cpp')
-rw-r--r--src/declarative/qml/qdeclarativeobjectscriptclass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp
index 68780b6..32a28fe 100644
--- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp
+++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp
@@ -588,7 +588,7 @@ private:
inline void cleanup();
- char data[2 * sizeof(void *)];
+ void *data[4];
int type;
};
}