aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Mueller <tobiasmue@gnome.org>2009-04-07 06:10:08 +0800
committerTobias Mueller <tobiasmue@src.gnome.org>2009-04-07 06:10:08 +0800
commitde522aa2fbbe3caea69d99d92014eafda93f810f (patch)
treebd30148c9414243cfe5e6d077c4604f9709e8477
parent65358d53f434b227cc77c43ef86e12910759d4b8 (diff)
downloadgsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar.gz
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar.bz2
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar.lz
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar.xz
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.tar.zst
gsoc2013-evolution-de522aa2fbbe3caea69d99d92014eafda93f810f.zip
** Fixes bug #578034
2009-04-07 Tobias Mueller <tobiasmue@gnome.org> ** Fixes bug #578034 * google-source.c (claim_error): Call gtk_message_dialog_new with a proper format string. svn path=/trunk/; revision=37495
-rw-r--r--plugins/google-account-setup/ChangeLog7
-rw-r--r--plugins/google-account-setup/google-source.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/plugins/google-account-setup/ChangeLog b/plugins/google-account-setup/ChangeLog
index 5ac1d69ef3..18fc973fe8 100644
--- a/plugins/google-account-setup/ChangeLog
+++ b/plugins/google-account-setup/ChangeLog
@@ -1,3 +1,10 @@
+2009-04-07 Tobias Mueller <tobiasmue@gnome.org>
+
+ ** Fixes bug #578034
+
+ * google-source.c (claim_error):
+ Call gtk_message_dialog_new with a proper format string.
+
2009-02-26 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #572950
diff --git a/plugins/google-account-setup/google-source.c b/plugins/google-account-setup/google-source.c
index 02f08da5e5..d0ff94b694 100644
--- a/plugins/google-account-setup/google-source.c
+++ b/plugins/google-account-setup/google-source.c
@@ -391,6 +391,7 @@ claim_error (GtkWindow *parent, const char *error)
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
+ "%s",
error);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);