aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);