diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-11-22 05:50:42 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-11-22 05:50:42 +0800 |
commit | edbacc610dfaeba89d02089c8dc919864dd4401f (patch) | |
tree | f1858d7877cd2b84be58cc9f646da8ff8c0c1317 /calendar/gui/calendar-commands.c | |
parent | 1257b0d78251d35c907932d30c2eb8ae3e2e3eb0 (diff) | |
download | gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar.gz gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar.bz2 gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar.lz gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar.xz gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.tar.zst gsoc2013-evolution-edbacc610dfaeba89d02089c8dc919864dd4401f.zip |
The icon column is not editable!
2000-11-21 Federico Mena Quintero <federico@helixcode.com>
* gui/calendar-model.c (calendar_model_is_cell_editable): The icon
column is not editable!
* gui/calendar-commands.c (todo_properties_changed): Removed.
(time_format_changed): Removed.
(colors_changed): Removed.
* gui/calendar-commands.h:
* gui/prop.c (prop_apply):
* gui/calendar-commands.c (init_calendar): Removed the old to-do
list crap.
* gui/gncal-todo.[ch]: Removed obsolete files.
* gui/Makefile.am (evolution_calendar_SOURCES): Removed gncal-todo.[ch].
* gui/gnome-cal.c (gnome_calendar_todo_properties_changed): Removed.
(gnome_calendar_time_format_changed): Removed.
(gnome_calendar_colors_changed): Removed.
svn path=/trunk/; revision=6635
Diffstat (limited to 'calendar/gui/calendar-commands.c')
-rw-r--r-- | calendar/gui/calendar-commands.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index c26144e307..0f6b70ab36 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -227,34 +227,6 @@ update_all_config_settings (void) } -/* These are all for the old config code and will eventually be removed. */ -void -time_format_changed (void) -{ - GList *l; - - for (l = all_calendars; l; l = l->next) - gnome_calendar_time_format_changed (GNOME_CALENDAR (l->data)); -} - -void -colors_changed (void) -{ - GList *l; - - for (l = all_calendars; l; l = l->next) - gnome_calendar_colors_changed (GNOME_CALENDAR (l->data)); -} - -void -todo_properties_changed(void) -{ - GList *l; - - for (l = all_calendars; l; l = l->next) - gnome_calendar_todo_properties_changed (GNOME_CALENDAR (l->data)); -} - /* Sets a clock cursor for the specified calendar window */ static void set_clock_cursor (GnomeCalendar *gcal) @@ -646,23 +618,6 @@ init_calendar (void) g_free (color); } - /* read todolist settings */ - - todo_show_time_remaining = gnome_config_get_bool("/calendar/Todo/show_time_remain"); - todo_show_due_date = gnome_config_get_bool("/calendar/Todo/show_due_date"); - - todo_item_dstatus_highlight_overdue = gnome_config_get_bool("/calendar/Todo/highlight_overdue"); - - todo_item_dstatus_highlight_due_today = gnome_config_get_bool("/calendar/Todo/highlight_due_today"); - - todo_item_dstatus_highlight_not_due_yet = gnome_config_get_bool("/calendar/Todo/highlight_not_due_yet"); - - todo_current_sort_column = gnome_config_get_int("/calendar/Todo/sort_column"); - - todo_current_sort_type = gnome_config_get_int("/calendar/Todo/sort_type"); - - todo_show_priority = gnome_config_get_bool("/calendar/Todo/show_priority"); - /* read alarm settings */ beep_on_display = gnome_config_get_bool ("/calendar/alarms/beep_on_display=FALSE"); enable_aalarm_timeout = gnome_config_get_bool ("/calendar/alarms/enable_audio_timeout=FALSE"); |