diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-10-20 08:42:20 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-10-20 08:42:20 +0800 |
commit | b274ab5c91aab08729c6b504ee7cd10631e3a42d (patch) | |
tree | 4d1617f7047c000f1cf8020100bb2361fb793ef7 /calendar/gui/e-calendar-table.c | |
parent | 9dd3248b61831d6530fb61dfde4b277d3820e7ed (diff) | |
download | gsoc2013-evolution-b274ab5c91aab08729c6b504ee7cd10631e3a42d.tar.gz gsoc2013-evolution-b274ab5c91aab08729c6b504ee7cd10631e3a42d.tar.zst gsoc2013-evolution-b274ab5c91aab08729c6b504ee7cd10631e3a42d.zip |
added _click-to-add-message, though I'm not sure if i18n will work.
2000-10-20 Damon Chaplin <damon@helixcode.com>
* gui/e-calendar-table.c (E_CALENDAR_TABLE_SPEC): added
_click-to-add-message, though I'm not sure if i18n will work.
* cal-util/cal-recur.c (cal_obj_time_add_hours):
(cal_obj_time_add_minutes):
(cal_obj_time_add_seconds): updated to handle -ve args.
* cal-util/timeutil.c (time_add_day): set tm_isdst to -1 before calling
mktime().
* cal-util/cal-recur.c (generate_instances_for_chunk): don't call the
callback if the event ends exactly on the interval start time.
* gui/e-week-view.c (e_week_view_reshape_event_span):
* gui/e-week-view-event-item.c (e_week_view_event_item_draw_icons):
* gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
* gui/e-day-view-main-item.c (e_day_view_main_item_draw_day_event):
* gui/e-day-view.c (e_day_view_reshape_long_event):
(e_day_view_reshape_day_event): use cal_component_has_alarms().
* cal-util/cal-component.[hc]: added cal_component_has_alarms().
2000-10-16 Damon Chaplin <damon@helixcode.com>
* gui/calendar-config.c (config_read): set default MonthVPanePosition
to 1 rather than 0, so if you move the hpane you'll see the date
navigator.
svn path=/trunk/; revision=6063
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index b372a1c03b..b771b338e6 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -134,7 +134,7 @@ e_calendar_table_class_init (ECalendarTableClass *class) #define E_CALENDAR_TABLE_SPEC \ - "<ETableSpecification click-to-add=\"true\"> draw-grid=\"true\"" \ + "<ETableSpecification click-to-add=\"true\" _click-to-add-message=\"Click to add a task\" draw-grid=\"true\">" \ "<ETableColumn model_col= \"0\" _title=\"Categories\" expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" cell=\"string\" compare=\"string\"/>" \ "<ETableColumn model_col= \"1\" _title=\"Classification\" expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" cell=\"string\" compare=\"string\"/>" \ "<ETableColumn model_col= \"2\" _title=\"Completion Date\" expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" cell=\"string\" compare=\"string\"/>" \ @@ -221,9 +221,6 @@ e_calendar_table_init (ECalendarTable *cal_table) /* Create the table */ table = e_table_scrolled_new (model, extras, E_CALENDAR_TABLE_SPEC, NULL); - gtk_object_set (GTK_OBJECT (table), - "click_to_add_message", "Click here to add a new Task", - NULL); gtk_table_attach (GTK_TABLE (cal_table), table, 0, 1, 0, 1, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); gtk_widget_show (table); |