aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-05-08 11:19:51 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-15 09:32:58 +0200
commit8b548bf9bbf2e6bb2a8d25a1558db607f2d0c767 (patch)
tree8481d684c530dd168a73906a0995364db84bdfd8 /src/qml
parent648351e6658172f2044b00ab592b48583bd27a4a (diff)
Do not use an export macro in the function definition
qmlExecuteDeferred is exported using Q_QML_EXPORT in qqml.h, so we don't need to use one here. Better not have any than have the wrong one, which can cause problems. Cherry picked from d6d2074ff in qtquick1 Change-Id: Ief978feb503b7381ed462f71ebbd7986bd6862c3 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/qml')
-rw-r--r--src/qml/qml/qqmlengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlengine.cpp b/src/qml/qml/qqmlengine.cpp
index bb3ac938c3..c7e69a74d6 100644
--- a/src/qml/qml/qqmlengine.cpp
+++ b/src/qml/qml/qqmlengine.cpp
@@ -1281,7 +1281,7 @@ void QQmlEnginePrivate::doDeleteInEngineThread()
namespace QtQml {
-Q_AUTOTEST_EXPORT void qmlExecuteDeferred(QObject *object)
+void qmlExecuteDeferred(QObject *object)
{
QQmlData *data = QQmlData::get(object);