aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-03-12 00:29:24 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-03-12 00:29:24 +0800
commit2e204d829b2056f9c5aa2671820ab39a6975b366 (patch)
tree52148519788b4878abdff7bb178e6c1796ed6ac8
parentbef9d7da2b21e97a7f54844e72f842fa566eef10 (diff)
downloadgsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar.gz
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar.bz2
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar.lz
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar.xz
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.tar.zst
gsoc2013-evolution-2e204d829b2056f9c5aa2671820ab39a6975b366.zip
issue more descriptive warnings.
2003-03-11 Rodrigo Moya <rodrigo@ximian.com> * gui/gnome-cal.c (gnome_calendar_open): issue more descriptive warnings. svn path=/trunk/; revision=20250
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/gnome-cal.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 499e8dcb54..ee5997cfef 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-11 Rodrigo Moya <rodrigo@ximian.com>
+
+ * gui/gnome-cal.c (gnome_calendar_open): issue more descriptive
+ warnings.
+
2003-03-09 Rodrigo Moya <rodrigo@ximian.com>
* gui/alarm-notify/alarm-notify.c (alarm_notify_add_calendar): if we
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index b892c0e6ef..da2dde2948 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -1998,7 +1998,7 @@ gnome_calendar_open (GnomeCalendar *gcal, const char *str_uri)
g_free (message);
if (!cal_client_open_calendar (priv->client, real_uri, FALSE)) {
- g_message ("gnome_calendar_open(): Could not issue the request");
+ g_message ("gnome_calendar_open(): Could not issue the request to open the calendar folder");
g_free (real_uri);
e_uri_free (uri);
e_week_view_set_status_message (E_WEEK_VIEW (priv->week_view), NULL);
@@ -2041,7 +2041,7 @@ gnome_calendar_open (GnomeCalendar *gcal, const char *str_uri)
e_uri_free (uri);
if (!success) {
- g_message ("gnome_calendar_open(): Could not issue the request");
+ g_message ("gnome_calendar_open(): Could not issue the request to open the tasks folder");
calendar_model_set_status_message (
e_calendar_table_get_model (E_CALENDAR_TABLE (priv->todo)), NULL);
return FALSE;