From dce64999d3325c5b55499d6ba657066efa48fbff Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 23 Dec 2020 21:10:54 +0100 Subject: Fix unit-test compilation on windows. --- test/translationtest.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/translationtest.cc') diff --git a/test/translationtest.cc b/test/translationtest.cc index 98cff11..d99c623 100644 --- a/test/translationtest.cc +++ b/test/translationtest.cc @@ -63,7 +63,11 @@ public: void testFromLocale() { +#ifdef _WIN32 + _putenv_s("LANG", "da_DK.UTF-8"); +#else setenv("LANG", "da_DK.UTF-8", 1); +#endif UITranslation t; // Look up translation from .mo file -- cgit v1.2.3