diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2008-09-13 08:06:32 +0800 |
---|---|---|
committer | Paul Bolle <pebolle@src.gnome.org> | 2008-09-13 08:06:32 +0800 |
commit | 498ef8c49931037ae506093df4fff819fae6f8a4 (patch) | |
tree | b46282f57c9533592f6bad1a749093c78cd8c62c /calendar/gui/dialogs | |
parent | aac2df259e56582ac5f8aeed9ca1c6213995efb0 (diff) | |
download | gsoc2013-evolution-498ef8c49931037ae506093df4fff819fae6f8a4.tar.gz gsoc2013-evolution-498ef8c49931037ae506093df4fff819fae6f8a4.tar.zst gsoc2013-evolution-498ef8c49931037ae506093df4fff819fae6f8a4.zip |
** Fix for bug #551895
2008-09-12 Paul Bolle <pebolle@tiscali.nl>
** Fix for bug #551895
* gui/dialogs/alarm-list-dialog.c: (edit_clicked_cb):
Copy paste error.
svn path=/trunk/; revision=36315
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/alarm-list-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/alarm-list-dialog.c b/calendar/gui/dialogs/alarm-list-dialog.c index b078e3123b..07395a4782 100644 --- a/calendar/gui/dialogs/alarm-list-dialog.c +++ b/calendar/gui/dialogs/alarm-list-dialog.c @@ -160,7 +160,7 @@ edit_clicked_cb (GtkButton *button, gpointer data) selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (dialog->list)); if (!gtk_tree_selection_get_selected (selection, NULL, &iter)) { - g_warning ("Could not get a selection to delete."); + g_warning ("Could not get a selection to edit."); return; } |