aboutsummaryrefslogtreecommitdiff
path: root/autotests/kdesktopfiletest.h
diff options
context:
space:
mode:
authorMartin Gräßlin <mgraesslin@kde.org>2014-06-05 14:05:44 +0200
committerThomas Braxton <kde.braxton@gmail.com>2014-06-12 17:48:21 -0500
commit69c203156d21385a8c263096cb35600e85a5c604 (patch)
tree38a69b65bea0a85ef43df011194ce4e0742aec55 /autotests/kdesktopfiletest.h
parentac6703215ba5e152379173ba503f5ba3bd7e8a85 (diff)
downloadkconfig-69c203156d21385a8c263096cb35600e85a5c604.tar.gz
kconfig-69c203156d21385a8c263096cb35600e85a5c604.tar.bz2
Fix locale-aware reading in KDesktopFile
The underlying KConfig used QLocale::name() for getting the locale aware part. But this returns "de_DE" while the desktop files store "de". In addition it constructs a QLocale object instead of using the system locale. This has the advantage that the usage of QLocale::setDafault() gets honored by KConfig. REVIEW: 118564
Diffstat (limited to 'autotests/kdesktopfiletest.h')
-rw-r--r--autotests/kdesktopfiletest.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/autotests/kdesktopfiletest.h b/autotests/kdesktopfiletest.h
index d57351fd..f854d6cc 100644
--- a/autotests/kdesktopfiletest.h
+++ b/autotests/kdesktopfiletest.h
@@ -26,6 +26,7 @@ class KDesktopFileTest : public QObject
Q_OBJECT
private Q_SLOTS:
void testRead();
+ void testReadLocalized();
void testUnsuccessfulTryExec();
void testSuccessfulTryExec();
void testActionGroup();