aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gnome-cal.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-18 01:21:00 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-18 01:21:00 +0800
commit6d68ea432a9718415056531bf1b5997a8ca428d1 (patch)
tree6675c1043c003f70406745be286a0f7f3a2f09f2 /calendar/gui/gnome-cal.c
parent54f708974fe1b0d8bcd8d749b579856657432bd3 (diff)
downloadgsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar.gz
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar.bz2
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar.lz
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar.xz
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.tar.zst
gsoc2013-evolution-6d68ea432a9718415056531bf1b5997a8ca428d1.zip
set a correct status message.
2003-12-17 Rodrigo Moya <rodrigo@ximian.com> * gui/gnome-cal.c (client_cal_opened_cb): set a correct status message. * gui/tasks-component.c (fill_popup_menu_cb): * gui/calendar-component.c (fill_popup_menu_cb): use the folder*.png icons for folder operations. * gui/Makefile.am: removed cal-client directory from $INCLUDES. svn path=/trunk/; revision=23968
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r--calendar/gui/gnome-cal.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index 7c6e0366ae..44766bc958 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -1802,16 +1802,15 @@ client_cal_opened_cb (ECal *client, ECalendarStatus status, gpointer data)
e_cal_set_default_timezone (client, priv->zone, NULL);
}
- /* add the alarms for this client */
+ /* add the clients to the models */
uristr = get_uri_without_password (e_cal_get_uri (client));
- msg = g_strdup_printf (_("Adding alarms for %s"), uristr);
+ msg = g_strdup_printf (_("Adding %s"), uristr);
g_free (uristr);
if (client == priv->task_pad_client) {
e_calendar_table_set_status_message (E_CALENDAR_TABLE (priv->todo), msg);
e_cal_model_add_client (e_calendar_table_get_model (E_CALENDAR_TABLE (priv->todo)),
priv->task_pad_client);
- }
- else {
+ } else {
e_calendar_view_set_status_message (E_CALENDAR_VIEW (priv->week_view), msg);
e_cal_model_add_client (e_calendar_view_get_model (E_CALENDAR_VIEW (priv->week_view)), client);