aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/dialogs/alarm-list-dialog.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 7324de8909..388f4ddcbb 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2008-09-12 Paul Bolle <pebolle@tiscali.nl>
+
+ ** Fix for bug #551895
+
+ * gui/dialogs/alarm-list-dialog.c: (edit_clicked_cb):
+ Copy paste error.
+
2008-09-12 Sankar P <psankar@novell.com>
License Changes
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;
}