aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-04-07 18:31:50 +0800
committerChristian Persch <chpe@src.gnome.org>2004-04-07 18:31:50 +0800
commit09013d85af029a40525cc7e6768f7840dfb4d064 (patch)
treeba658041547ca07cfe814719892ffe0f6ebacb27
parentcdb08ec94be2116912025f46fed03ead554c0af8 (diff)
downloadgsoc2013-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.
-rw-r--r--ChangeLog8
-rw-r--r--lib/eel-gconf-extensions.c1
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b37a9b8dd..9b836e8d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+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.
+
2004-04-05 Christian Persch <chpe@cvs.gnome.org>
* data/glade/epiphany.glade:
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);