aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-commands.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-07-01 12:59:24 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-07-01 12:59:24 +0800
commita0afdf4f53224a55425a8826c0563faa510fa6c5 (patch)
tree0b73a44325df455ee96053f0b6983a1d5f9a7592 /calendar/gui/calendar-commands.c
parent21f1aedda2c1c38589c1f0abb550cabeab8f551f (diff)
downloadgsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar.gz
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar.bz2
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar.lz
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar.xz
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.tar.zst
gsoc2013-evolution-a0afdf4f53224a55425a8826c0563faa510fa6c5.zip
Fixes bug #1406.
2001-06-30 Federico Mena Quintero <federico@ximian.com> Fixes bug #1406. * gui/calendar-config.c (config_read): Handle the options for the task list colors. (calendar_config_write): Ditto. (calendar_config_get_tasks_due_today_color): New function. (calendar_config_set_tasks_due_today_color): New function. (calendar_config_get_tasks_overdue_color): New function. (calendar_config_set_tasks_overdue_color): New function. (calendar_config_configure_e_calendar_table): Use e_table_model_changed() for the colors. * gui/dialogs/cal-prefs-dialog.glade: Updated the options for the task list and alarms. * gui/dialogs/cal-prefs-dialog.c (cal_prefs_dialog_show_config): Update the task list settings. (cal_prefs_dialog_update_config): Ditto. * gui/calendar-model.c (get_color): Deal with tasks for today as well as overdue tasks. Make it cleaner, even though we have to duplicate a chunk of is_overdue(). * gui/calendar-commands.c (preferences_cmd): Renamed from properties_cmd(). svn path=/trunk/; revision=10648
Diffstat (limited to 'calendar/gui/calendar-commands.c')
-rw-r--r--calendar/gui/calendar-commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c
index a16b280a13..44036d727b 100644
--- a/calendar/gui/calendar-commands.c
+++ b/calendar/gui/calendar-commands.c
@@ -357,7 +357,7 @@ save_as_calendar_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
}
static void
-properties_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
+preferences_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
if (!preferences_dialog)
preferences_dialog = cal_prefs_dialog_new ();
@@ -409,7 +409,7 @@ static BonoboUIVerb verbs [] = {
BONOBO_UI_VERB ("CalendarPrintPreview", file_print_preview_cb),
BONOBO_UI_VERB ("EditNewAppointment", new_appointment_cb),
BONOBO_UI_VERB ("EditNewEvent", new_event_cb),
- BONOBO_UI_VERB ("CalendarPreferences", properties_cmd),
+ BONOBO_UI_VERB ("CalendarPreferences", preferences_cmd),
BONOBO_UI_VERB ("CutEvent", cut_event_cmd),
BONOBO_UI_VERB ("CopyEvent", copy_event_cmd),