From e29d5a8a7adbc9363d4a054b6ab70ada182ae15d Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Sun, 25 Mar 2001 15:30:16 +0000 Subject: The model_rows_{inserted,deleted} signals changed names; deal with it. 2001-03-25 Federico Mena Quintero * gui/e-calendar-table.c (e_calendar_table_init): The model_rows_{inserted,deleted} signals changed names; deal with it. (e_calendar_table_on_rows_inserted): Updated for new ETable API. (e_calendar_table_on_rows_deleted): Likewise. * gui/gnome-cal.h (GnomeCalendarOpenMode): Removed unused enum. * gui/gnome-cal.c (gnome_calendar_open): Constify. * gui/calendar-commands.c (calendar_set_uri): Removed function, since it was just calling gnome_calendar_open(). * gui/control-factory.c (set_prop): Replace usage of calendar_set_uri() with gnome_calendar_open(). (load_calendar): Likewise. (calendar_persist_init): Made static. * gui/e-tasks.c: #include "calendar-config.h" (e_tasks_update_all_config_settings): We are configuring a table, not a calendar! Use the appropriate function. svn path=/trunk/; revision=8928 --- calendar/gui/e-tasks.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'calendar/gui/e-tasks.c') diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 237f90959e..d15d332cde 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -33,6 +33,7 @@ #include "widgets/menus/gal-view-menus.h" #include "dialogs/task-editor.h" #include "e-calendar-table.h" +#include "calendar-config.h" #include "component-factory.h" #include "e-tasks.h" @@ -579,7 +580,7 @@ e_tasks_setup_menus (ETasks *tasks, /* This updates all the preference settings for all the ETasks widgets in use. */ void -e_tasks_update_all_config_settings () +e_tasks_update_all_config_settings (void) { ETasks *tasks; ETasksPrivate *priv; @@ -588,6 +589,6 @@ e_tasks_update_all_config_settings () for (elem = all_tasks; elem; elem = elem->next) { tasks = E_TASKS (elem->data); priv = tasks->priv; - calendar_config_configure_e_calendar (E_CALENDAR_TABLE (priv->tasks_view)); + calendar_config_configure_e_calendar_table (E_CALENDAR_TABLE (priv->tasks_view)); } } -- cgit