diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-01 00:59:18 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-01 00:59:18 +0800 |
commit | de25efe4bdfddb3240b68980a14d9f390c6f7d8b (patch) | |
tree | 24026ad11a272d2fe531b97061f27eed1a5ecb6f /calendar/gui/calendar-config.h | |
parent | 8e5d0b82e0d2ebd5beb5db504fa7f7302c541a42 (diff) | |
download | gsoc2013-evolution-de25efe4bdfddb3240b68980a14d9f390c6f7d8b.tar.gz gsoc2013-evolution-de25efe4bdfddb3240b68980a14d9f390c6f7d8b.tar.zst gsoc2013-evolution-de25efe4bdfddb3240b68980a14d9f390c6f7d8b.zip |
add necessary include
2004-12-31 JP Rosevear <jpr@novell.com>
* gui/dialogs/schedule-page.c: add necessary include
* gui/dialogs/meeting-page.c (sensitize_widgets): kill warning
* gui/dialogs/cal-prefs-dialog.c (template_url_changed): kill warning
* gui/dialogs/alarm-dialog.c (malarm_widgets_to_alarm): kill warnings
(init_widgets): ditto
* gui/main.c (initialize): no need to init the config system now
* gui/e-cell-date-edit-config.h: include date edit text header
* gui/e-cal-config.c (ecp_target_free): kill warning
* gui/calendar-config.c: clean up includes, internally initialize
the config setup to make it easier for others; kill dead functions
svn path=/trunk/; revision=28209
Diffstat (limited to 'calendar/gui/calendar-config.h')
-rw-r--r-- | calendar/gui/calendar-config.h | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/calendar/gui/calendar-config.h b/calendar/gui/calendar-config.h index cba2c7bcd7..414e52b14f 100644 --- a/calendar/gui/calendar-config.h +++ b/calendar/gui/calendar-config.h @@ -30,12 +30,9 @@ #ifndef _CALENDAR_CONFIG_H_ #define _CALENDAR_CONFIG_H_ +#include <glib.h> +#include <libecal/e-cal.h> #include <gconf/gconf-client.h> -#include <widgets/misc/e-calendar.h> -#include <widgets/misc/e-dateedit.h> -#include <widgets/misc/e-cell-date-edit.h> -#include "e-calendar-table.h" - /* These are used to get/set the working days in the week. The bit-flags are combined together. The bits must be from 0 (Sun) to 6 (Sat) to match the @@ -61,7 +58,6 @@ typedef enum } CalUnits; -void calendar_config_init (void); void calendar_config_remove_notification (guint id); /* @@ -211,13 +207,6 @@ void calendar_config_set_free_busy_template (const gchar *template); guint calendar_config_add_notification_free_busy_template (GConfClientNotifyFunc func, gpointer data); -/* Convenience functions to configure common properties of ECalendar, - EDateEdit & ECalendarTable widgets, and the ECellDateEdit ETable cell. */ -void calendar_config_configure_e_calendar (ECalendar *cal); -void calendar_config_configure_e_date_edit (EDateEdit *dedit); -void calendar_config_configure_e_calendar_table (ECalendarTable *cal_table); -void calendar_config_configure_e_cell_date_edit (ECellDateEdit *ecde); - /* Shows the timezone dialog if the user hasn't set a default timezone. */ void calendar_config_check_timezone_set (void); |