diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-05-30 12:22:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-05-30 12:22:53 +0100 |
commit | d412e969e103253bbc74df8ead9fe3d67ddb53a0 (patch) | |
tree | 2bcd8f2d8a5640fc50586464f21a7faff9b5b640 /vcl/unx/gtk | |
parent | 345be1519e96be63624bf58ca5de0fe9abe16edd (diff) |
Revert "make LANGUAGE setting universal, not just gtk specific"
poxy cppunit tests can't use config here
This reverts commit f55eeb7a45998d16eb0fe49088e172ce45ac4f2b.
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r-- | vcl/unx/gtk/gtkinst.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/unx/gtk/gtkinst.cxx b/vcl/unx/gtk/gtkinst.cxx index a22ea9c93f87..e01a267b6131 100644 --- a/vcl/unx/gtk/gtkinst.cxx +++ b/vcl/unx/gtk/gtkinst.cxx @@ -167,6 +167,12 @@ GtkInstance::GtkInstance( SalYieldMutex* pMutex ) //UI in a LTR locale void GtkInstance::AfterAppInit() { + OUString aLocaleString(Application::GetSettings().GetUILanguageTag().getGlibcLocaleString(".UTF-8")); + if (!aLocaleString.isEmpty()) + { + OUString envVar("LANGUAGE"); + osl_setEnvironment(envVar.pData, aLocaleString.pData); + } EnsureInit(); } |