# HG changeset patch # User jodogne # Date 1500109619 -7200 # Node ID 6677cdbfbafd7585d80e55ea61761be65b021cb1 # Parent 9ccd7f926c5b5e26cfdf123859b12988561cc8be fix default locale for Windows diff -r 9ccd7f926c5b -r 6677cdbfbafd Core/Toolbox.cpp --- a/Core/Toolbox.cpp Sat Jul 15 10:59:42 2017 +0200 +++ b/Core/Toolbox.cpp Sat Jul 15 11:06:59 2017 +0200 @@ -1261,8 +1261,8 @@ // Make Orthanc use English, United States locale #if defined(_WIN32) - // For Windows: use default locale (one might use "en-US" instead) - static const char* DEFAULT_LOCALE = NULL; + // For Windows: use default locale (one might use "en_US" instead) + static const char* DEFAULT_LOCALE = ""; #else // For Linux & cie static const char* DEFAULT_LOCALE = "en_US.UTF-8";