[ekiga] [windows] Fix Ekiga shows only C locale
- From: Eugen Dedu <ededu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] [windows] Fix Ekiga shows only C locale
- Date: Tue, 17 Dec 2013 14:28:29 +0000 (UTC)
commit 44009ee6c5990292dbb9cd30306d95f84df38f86
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date: Tue Dec 17 15:27:24 2013 +0100
[windows] Fix Ekiga shows only C locale
Bug introduced by commit https://git.gnome.org/browse/ekiga/commit/?id=e5d5d05
src/gui/main.cpp | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/gui/main.cpp b/src/gui/main.cpp
index 8e9161a..ebbfd59 100644
--- a/src/gui/main.cpp
+++ b/src/gui/main.cpp
@@ -105,6 +105,13 @@ main (int argc,
signal (SIGPIPE, SIG_IGN);
#endif
+ /* initialize platform-specific code */
+ gm_platform_init ();
+#ifdef WIN32
+ // plugins (i.e. the audio/video ptlib/opal codecs) are searched in ./plugins
+ chdir (win32_datadir ());
+#endif
+
/* Gettext initialization */
path = g_build_filename (DATA_DIR, "locale", NULL);
textdomain (GETTEXT_PACKAGE);
@@ -118,13 +125,6 @@ main (int argc,
setenv ("PULSE_PROP_application.name", _("Ekiga Softphone"), true);
#endif
- /* initialize platform-specific code */
- gm_platform_init ();
-#ifdef WIN32
- // plugins (i.e. the audio/video ptlib/opal codecs) are searched in ./plugins
- chdir (win32_datadir ());
-#endif
-
/* Arguments initialization */
GOptionEntry arguments [] =
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]