diff options
| author | Christian Persch <chpe@cvs.gnome.org> | 2003-10-13 06:11:11 +0800 |
|---|---|---|
| committer | Christian Persch <chpe@src.gnome.org> | 2003-10-13 06:11:11 +0800 |
| commit | 3e66a65b5bef3163f931475e1457d029290eec27 (patch) | |
| tree | 651f67c52351d86fd0384d2367c603d0920d1cc0 /embed | |
| parent | 6b6401d3418f1c2c7350715d0ef8223e315e19f5 (diff) | |
| download | gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar.gz gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar.bz2 gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar.lz gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar.xz gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.tar.zst gsoc2013-epiphany-3e66a65b5bef3163f931475e1457d029290eec27.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.
Diffstat (limited to 'embed')
| -rw-r--r-- | embed/mozilla/mozilla-notifiers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/mozilla-notifiers.cpp b/embed/mozilla/mozilla-notifiers.cpp index 6c46fe55e..3baaa98af 100644 --- a/embed/mozilla/mozilla-notifiers.cpp +++ b/embed/mozilla/mozilla-notifiers.cpp @@ -623,7 +623,7 @@ get_system_language () } } - return NULL; + return g_strdup ("en"); } static void |
