summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel
diff options
context:
space:
mode:
authormae <qt-info@nokia.com>2011-05-02 12:45:43 +0200
committerOlivier Goffart <olivier.goffart@nokia.com>2011-05-10 12:54:53 +0200
commita9a850952bc7f7766f6116d984386928bed1893d (patch)
treeff79e76935a5ee1da1c34e28e486c68f7028a1c4 /src/corelib/kernel
parentc500291e42ea3f0237418b629d4a0bf9c0f23ff8 (diff)
Fix namespace issue with the global static
(cherry picked from commit c99be6bf73dce10fc706764b72a8dacc1c6589a0)
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index afbcff3eb9..902902f087 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -274,11 +274,11 @@ Q_CORE_EXPORT bool qt_locale_initialized = false;
Create an instance of Trolltech.conf. This ensures that the settings will not
be thrown out of QSetting's cache for unused settings.
*/
-Q_GLOBAL_STATIC_WITH_ARGS(QSettings, trolltechConf, (QSettings::UserScope, QLatin1String("Trolltech")))
+Q_GLOBAL_STATIC_WITH_ARGS(QSettings, staticTrolltechConf, (QSettings::UserScope, QLatin1String("Trolltech")))
QSettings *QCoreApplicationPrivate::trolltechConf()
{
- return ::trolltechConf();
+ return staticTrolltechConf();
}
Q_CORE_EXPORT uint qGlobalPostedEventsCount()