summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/localesettings/systemlocale_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/localesettings/systemlocale_p.h b/src/localesettings/systemlocale_p.h
index f5caed9..761c5cd 100644
--- a/src/localesettings/systemlocale_p.h
+++ b/src/localesettings/systemlocale_p.h
@@ -64,7 +64,7 @@ public:
QStringList newLocale;
QMap<QString, QString>::iterator i;
for (i = m_localeCache.begin(); i != m_localeCache.end(); ++i) {
- QString val = i.key() + "=" + i.value();
+ QString val = i.key() + QLatin1String("=") + i.value();
newLocale.append(val);
}
m_localeInterface->SetLocale(newLocale, true);