From 8c60e80c1a64d5adc5a17c56079f2954f8ae02e6 Mon Sep 17 00:00:00 2001 From: Julien Malik <julien.malik@c-s.fr> Date: Mon, 25 Feb 2013 14:58:17 +0100 Subject: [PATCH] BUG: other implementation for fix to #623 --- Code/Application/main.cxx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Code/Application/main.cxx b/Code/Application/main.cxx index b283af6d11..cc8de1b735 100644 --- a/Code/Application/main.cxx +++ b/Code/Application/main.cxx @@ -43,6 +43,13 @@ int main( int argc, char* argv[] ) { mvd::Application application( argc, argv ); + + // + // Force numeric options of locale to "C" + // See issue #635 + // + setlocale( LC_NUMERIC, "C" ); + mvd::MainWindow mainWindow; mainWindow.show(); -- GitLab