diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-04-07 18:31:50 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-04-07 18:31:50 +0800 |
commit | 09013d85af029a40525cc7e6768f7840dfb4d064 (patch) | |
tree | ba658041547ca07cfe814719892ffe0f6ebacb27 /lib/eel-gconf-extensions.c | |
parent | cdb08ec94be2116912025f46fed03ead554c0af8 (diff) | |
download | gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar.gz gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar.bz2 gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar.lz gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar.xz gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.tar.zst gsoc2013-epiphany-09013d85af029a40525cc7e6768f7840dfb4d064.zip |
Don't abort on error, just show the message on console. Fixes bug #139247.
2004-04-07 Christian Persch <chpe@cvs.gnome.org>
* lib/eel-gconf-extensions.c: (eel_gconf_handle_error):
Don't abort on error, just show the message on console. Fixes bug #139247.
Don't actally remove the nonsensical message since that would break string
freeze.
Diffstat (limited to 'lib/eel-gconf-extensions.c')
-rw-r--r-- | lib/eel-gconf-extensions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/eel-gconf-extensions.c b/lib/eel-gconf-extensions.c index 387eb4e9e..794678496 100644 --- a/lib/eel-gconf-extensions.c +++ b/lib/eel-gconf-extensions.c @@ -87,7 +87,6 @@ eel_gconf_handle_error (GError **error) "All further errors shown " "only on terminal"), (*error)->message); - g_error (message, _("GConf Error"), NULL); g_free (message); } g_error_free (*error); |