aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-04-07 18:21:13 +0800
committerChristian Persch <chpe@src.gnome.org>2004-04-07 18:21:13 +0800
commit53003112015e30faf597ca7bc8962ce2de3874ca (patch)
tree31b84f8e5625cf603e9d454f8a0d87aae24cf588 /lib
parente4531fb3af5576448ffa1072ea635b6821d437ea (diff)
downloadgsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar.gz
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar.bz2
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar.lz
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar.xz
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.tar.zst
gsoc2013-epiphany-53003112015e30faf597ca7bc8962ce2de3874ca.zip
Don't abort on errors, just display a message on console.
2004-04-07 Christian Persch <chpe@cvs.gnome.org> * lib/eel-gconf-extensions.c: (eel_gconf_handle_error): Don't abort on errors, just display a message on console.
Diffstat (limited to 'lib')
-rw-r--r--lib/eel-gconf-extensions.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/eel-gconf-extensions.c b/lib/eel-gconf-extensions.c
index f864f48e0..5b4d3b89a 100644
--- a/lib/eel-gconf-extensions.c
+++ b/lib/eel-gconf-extensions.c
@@ -76,22 +76,11 @@ gboolean
eel_gconf_handle_error (GError **error)
{
char *message;
- static gboolean shown_dialog = FALSE;
g_return_val_if_fail (error != NULL, FALSE);
if (*error != NULL) {
g_warning (_("GConf error:\n %s"), (*error)->message);
- if (! shown_dialog) {
- shown_dialog = TRUE;
-
- message = g_strdup_printf (_("GConf error:\n %s\n"
- "All further errors shown "
- "only on terminal"),
- (*error)->message);
- g_error (message, _("GConf Error"), NULL);
- g_free (message);
- }
g_error_free (*error);
*error = NULL;