aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-calendar-view.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 71f726ef74..78226cbffa 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-17 Rodrigo Moya <rodrigo@novell.com>
+
+ * gui/e-calendar-view.c (on_unrecur_appointment): removed the
+ e_day_view_... prefix in warning messages.
+
2005-01-17 Harish Krishnaswamy <kharish@novell.com>
* gui/dialogs/cal-attachment-bar.c (destroy):
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index 4d151e25fa..e7252c427b 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -1314,12 +1314,12 @@ on_unrecur_appointment (EPopup *ep, EPopupItem *pitem, void *data)
* present the updates happen synchronously so our event may disappear.
*/
if (!e_cal_modify_object (client, e_cal_component_get_icalcomponent (comp), CALOBJ_MOD_THIS, NULL))
- g_message ("e_day_view_on_unrecur_appointment(): Could not update the object!");
+ g_message ("on_unrecur_appointment(): Could not update the object!");
g_object_unref (comp);
if (!e_cal_create_object (client, e_cal_component_get_icalcomponent (new_comp), &new_uid, NULL))
- g_message ("e_day_view_on_unrecur_appointment(): Could not update the object!");
+ g_message ("on_unrecur_appointment(): Could not update the object!");
else
g_free (new_uid);