diff options
author | Tobias Mueller <tobiasmue@svn.gnome.org> | 2007-12-14 02:23:31 +0800 |
---|---|---|
committer | Tobias Mueller <tobiasmue@src.gnome.org> | 2007-12-14 02:23:31 +0800 |
commit | cda4109744c046a8f780ab6114d790ed014f86a6 (patch) | |
tree | ebc0f0818caa3c349467ca0f28655d12799f5441 /addressbook | |
parent | c73bf5eaa749b85c3b06038a4898b006bdf7491e (diff) | |
download | gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.gz gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.zst gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.zip |
** Fixes bug 474651
2007-12-13 Tobias Mueller <tobiasmue@svn.gnome.org>
** Fixes bug 474651
* calendar/gui/memos-component.c:
* addressbook/gui/component/addressbook.c:
* calendar/gui/tasks-control.c:
* calendar/gui/tasks-component.c:
* widgets/misc/e-dateedit.c:
* calendar/gui/e-cal-model-tasks.c:
* widgets/misc/e-cell-percent.c:
* calendar/gui/e-itip-control.c:
* calendar/gui/comp-editor-factory.c:
Use format strings in gtk_message_dialog_new
svn path=/trunk/; revision=34694
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 0649b02f43..06e5b4cd2c 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -96,7 +96,7 @@ load_source_auth_cb (EBook *book, EBookStatus status, gpointer closure) 0, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, - _("Accessing LDAP Server anonymously")); + "%s", _("Accessing LDAP Server anonymously")); g_signal_connect (dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL); gtk_widget_show (dialog); if (data->cb) |