diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-26 06:55:58 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-26 06:55:58 +0800 |
commit | 2f5e7395814b03ddfc2f612e5cd962be50f38c27 (patch) | |
tree | a0dc3dd0984cf516d9bf11840df199c43ebe8a72 /calendar/gui/e-calendar-table.c | |
parent | 1e0d3b18fa6fe068f84ec011ad8b78e6ef70eaf5 (diff) | |
download | gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar.gz gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar.bz2 gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar.lz gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar.xz gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.tar.zst gsoc2013-evolution-2f5e7395814b03ddfc2f612e5cd962be50f38c27.zip |
Uncomment debug code.
2000-08-25 JP Rosevear <jpr@helixcode.com>
* gui/e-calendar-table.c (e_calendar_table_init): Uncomment
debug code.
* gui/calendar-model.c (set_complete): Set the completed
date to the current date
(calendar_model_set_value_at): Handle complete field
svn path=/trunk/; revision=5044
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index a1b224c424..b84e21b34a 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -204,11 +204,11 @@ e_calendar_table_init (ECalendarTable *cal_table) create_column (header, model, CAL_COMPONENT_FIELD_PRIORITY, _("Priority")); cell = e_cell_text_new (model, NULL, GTK_JUSTIFY_LEFT); -// gtk_object_set (GTK_OBJECT (cell), -// "strikeout_column", CAL_COMPONENT_FIELD_COMPLETE, -// "bold_column", CAL_COMPONENT_FIELD_OVERDUE, -// "color_column", CAL_COMPONENT_FIELD_COLOR, -// NULL); + gtk_object_set (GTK_OBJECT (cell), + "strikeout_column", CAL_COMPONENT_FIELD_COMPLETE, + "bold_column", CAL_COMPONENT_FIELD_OVERDUE, + "color_column", CAL_COMPONENT_FIELD_COLOR, + NULL); column = e_table_col_new (CAL_COMPONENT_FIELD_SUMMARY, _("Summary"), 1.0, 10, cell, g_str_compare, TRUE); e_table_header_add_column (header, column, CAL_COMPONENT_FIELD_SUMMARY); |