13
0

use setlocale() in preference to gtk_set_locale()

This commit is contained in:
Paul Davis 2016-04-24 21:46:39 -04:00
parent 84a0386f9c
commit 69f67b6198

View File

@ -18,10 +18,12 @@
*/
#include <cstdlib>
#include <signal.h>
#include <cerrno>
#include <vector>
#include <signal.h>
#include <locale.h>
#include <sigc++/bind.h>
#include <gtkmm/settings.h>
@ -294,7 +296,7 @@ int main (int argc, char *argv[])
#endif
#ifdef ENABLE_NLS
gtk_set_locale ();
setlocale (LC_ALL, "");
#endif
console_madness_begin();