aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Mueller <tobiasmue@gnome.org>2009-04-07 08:39:58 +0800
committerTobias Mueller <tobiasmue@src.gnome.org>2009-04-07 08:39:58 +0800
commit80b575ffb834f003c7e0742b60ac02d5cb09a43a (patch)
tree7da7726c9e2c6cd8322dbf6d007814a4c1849654
parentde522aa2fbbe3caea69d99d92014eafda93f810f (diff)
downloadgsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar.gz
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar.bz2
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar.lz
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar.xz
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.tar.zst
gsoc2013-evolution-80b575ffb834f003c7e0742b60ac02d5cb09a43a.zip
** Fixes bug #577989
2009-04-07 Tobias Mueller <tobiasmue@gnome.org> ** Fixes bug #577989 * conf-bridge.c (error_handler): Call gtk_message_dialog_new with a proper format string ("%s") svn path=/trunk/; revision=37496
-rw-r--r--e-util/ChangeLog7
-rw-r--r--e-util/gconf-bridge.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index a817d0d033..4b29efd710 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,10 @@
+2009-04-07 Tobias Mueller <tobiasmue@gnome.org>
+
+ ** Fixes bug #577989
+
+ * conf-bridge.c (error_handler):
+ Call gtk_message_dialog_new with a proper format string ("%s")
+
2009-02-13 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #564229
diff --git a/e-util/gconf-bridge.c b/e-util/gconf-bridge.c
index 451b7052cb..66dcbc7ea2 100644
--- a/e-util/gconf-bridge.c
+++ b/e-util/gconf-bridge.c
@@ -1223,6 +1223,7 @@ error_handler (GConfClient *client,
dlg = gtk_message_dialog_new (NULL, 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
+ "%s",
message);
g_free (message);