diff options
author | hjk <qtc-committer@nokia.com> | 2009-09-28 10:05:54 (GMT) |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-09-28 10:07:41 (GMT) |
commit | 857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36 (patch) | |
tree | 4ff4f4b40a0a20f57d187b9054f95756aa4717a4 /src/script | |
parent | 994daec967ea0e3db2fa6093efe1274f9a79d2ff (diff) | |
download | Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.zip Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.tar.gz Qt-857a77fe62b9ad3165cf67a5c2e869e5e7dd9e36.tar.bz2 |
compile fix with namespaced qt
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/bridge/qscriptactivationobject.cpp | 2 | ||||
-rw-r--r-- | src/script/bridge/qscriptfunction.cpp | 4 | ||||
-rw-r--r-- | src/script/bridge/qscriptobject.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/script/bridge/qscriptactivationobject.cpp b/src/script/bridge/qscriptactivationobject.cpp index 7982982..edccb3e 100644 --- a/src/script/bridge/qscriptactivationobject.cpp +++ b/src/script/bridge/qscriptactivationobject.cpp @@ -46,7 +46,7 @@ namespace JSC { - ASSERT_CLASS_FITS_IN_CELL(QScript::QScriptActivationObject); + ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScript::QScriptActivationObject)); } QT_BEGIN_NAMESPACE diff --git a/src/script/bridge/qscriptfunction.cpp b/src/script/bridge/qscriptfunction.cpp index 5f419ff..d3767bf 100644 --- a/src/script/bridge/qscriptfunction.cpp +++ b/src/script/bridge/qscriptfunction.cpp @@ -55,8 +55,8 @@ namespace JSC { -ASSERT_CLASS_FITS_IN_CELL(QScript::FunctionWrapper); -ASSERT_CLASS_FITS_IN_CELL(QScript::FunctionWithArgWrapper); +ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScript::FunctionWrapper)); +ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScript::FunctionWithArgWrapper)); } QT_BEGIN_NAMESPACE diff --git a/src/script/bridge/qscriptobject.cpp b/src/script/bridge/qscriptobject.cpp index 0d899f8..55644fe 100644 --- a/src/script/bridge/qscriptobject.cpp +++ b/src/script/bridge/qscriptobject.cpp @@ -46,8 +46,8 @@ namespace JSC { //QT_USE_NAMESPACE -ASSERT_CLASS_FITS_IN_CELL(QScriptObject); -ASSERT_CLASS_FITS_IN_CELL(QScriptObjectPrototype); +ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScriptObject)); +ASSERT_CLASS_FITS_IN_CELL(QT_PREPEND_NAMESPACE(QScriptObjectPrototype)); } QT_BEGIN_NAMESPACE |