diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-03-12 00:29:24 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-03-12 00:29:24 +0800 |
commit | 2e204d829b2056f9c5aa2671820ab39a6975b366 (patch) | |
tree | 52148519788b4878abdff7bb178e6c1796ed6ac8 /calendar/gui | |
parent | bef9d7da2b21e97a7f54844e72f842fa566eef10 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gnome-cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |