diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-10-13 06:06:21 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-10-13 06:06:21 +0800 |
commit | 0061e21c7d90f2c1396e45dae875c11bb6148695 (patch) | |
tree | ed8323edc4887ef14285f24b8ad7d64a2449c971 | |
parent | 326225bead407e15c3573a77d1cca18afba8ed34 (diff) | |
download | gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar.gz gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar.bz2 gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar.lz gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar.xz gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.tar.zst gsoc2013-epiphany-0061e21c7d90f2c1396e45dae875c11bb6148695.zip |
Return "en" when in C locale.
2003-10-13 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-notifiers.cpp:
(get_system_language):
Return "en" when in C locale.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/mozilla-notifiers.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2003-10-13 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-notifiers.cpp: + (get_system_language): + + Return "en" when in C locale. + 2003-10-11 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyWrapper.cpp: diff --git a/embed/mozilla/mozilla-notifiers.cpp b/embed/mozilla/mozilla-notifiers.cpp index a7889c88a..28049013b 100644 --- a/embed/mozilla/mozilla-notifiers.cpp +++ b/embed/mozilla/mozilla-notifiers.cpp @@ -614,7 +614,7 @@ get_system_language () } } - return NULL; + return g_strdup ("en"); } static void |