summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qcoreglobaldata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qcoreglobaldata.cpp')
-rw-r--r--src/corelib/kernel/qcoreglobaldata.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/kernel/qcoreglobaldata.cpp b/src/corelib/kernel/qcoreglobaldata.cpp
index e5fb50715c..e2087b9e64 100644
--- a/src/corelib/kernel/qcoreglobaldata.cpp
+++ b/src/corelib/kernel/qcoreglobaldata.cpp
@@ -45,15 +45,19 @@ QT_BEGIN_NAMESPACE
Q_GLOBAL_STATIC(QCoreGlobalData, globalInstance)
QCoreGlobalData::QCoreGlobalData()
+#if QT_CONFIG(textcodec)
: codecForLocale(0)
+#endif
{
}
QCoreGlobalData::~QCoreGlobalData()
{
+#if QT_CONFIG(textcodec)
codecForLocale = 0;
for (QList<QTextCodec *>::const_iterator it = allCodecs.constBegin(); it != allCodecs.constEnd(); ++it)
delete *it;
+#endif
}
QCoreGlobalData *QCoreGlobalData::instance()