From 04df8299068f32a07c09d8405b945a213831274a Mon Sep 17 00:00:00 2001 From: Oliver Duis Date: Fri, 5 Oct 2012 20:37:34 +0200 Subject: [PATCH] Fixed crash on startup on behalf of Victor, see issue 1513 --- rtgui/main.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/main.cc b/rtgui/main.cc index fa8ec991c..8934257b4 100644 --- a/rtgui/main.cc +++ b/rtgui/main.cc @@ -30,6 +30,7 @@ #include "rtwindow.h" #include #include +#include #include "options.h" #include "soundman.h" #include "rtimage.h" @@ -65,6 +66,7 @@ int processLineParams( int argc, char **argv ); int main(int argc, char **argv) { + setlocale(LC_ALL,""); #ifdef BUILD_BUNDLE char exname[512] = {0}; Glib::ustring exePath;