diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-11-07 02:41:38 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-11-07 02:41:38 +0800 |
commit | 1e70a6726b74e8d293b5eeba2a0751506f974b5b (patch) | |
tree | 4c78e8afeb90b31d229cb92ce09b3b27c271b3e3 /calendar/gui/main.c | |
parent | 561fed0aa901f9a6286adaa4437cb5c44de86b84 (diff) | |
download | gsoc2013-evolution-1e70a6726b74e8d293b5eeba2a0751506f974b5b.tar.gz gsoc2013-evolution-1e70a6726b74e8d293b5eeba2a0751506f974b5b.tar.zst gsoc2013-evolution-1e70a6726b74e8d293b5eeba2a0751506f974b5b.zip |
Removed the old recurrence page. Wheeeeeeeeee!
2000-11-05 Federico Mena Quintero <federico@helixcode.com>
* gui/event-editor-dialog.glade: Removed the old recurrence page.
Wheeeeeeeeee!
* gui/event-editor.c (make_recurrence_special): Clear the monthly
widgets.
(make_recur_monthly_special): Create the monthly widgets.
(clear_widgets): Clear the monthly values.
(simple_recur_to_comp_object): Fill in the monthly values.
(fill_recurrence_widgets): Fill in the monthly and yearly source
values.
(dialog_to_comp_object): Take in a CalComponent instead of using
the event editor's directly.
(recur_to_comp_object): Likewise.
(simple_recur_to_comp_object): Likewise.
(EventEditorPrivate): Removed the widgets from the old recurrence
page.
(get_widgets): Likewise.
(clear_widgets): Likewise.
(dialog_to_comp_object): If the description or summary are empty,
just clear the description list or summary property, respectively,
instead of saving empty ones.
(simple_recur_to_comp_object): Set the week_start field.
* gui/main.c: Fix includes, and add calendar-config.h.
* gui/Makefile.am (evolution_calendar_SOURCES): The glade messages
file should not be in SOURCES.
svn path=/trunk/; revision=6417
Diffstat (limited to 'calendar/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index b11a28f33f..95b9ddf64d 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -34,10 +34,9 @@ #include <liboaf/liboaf.h> #include <gal/widgets/e-cursors.h> -#include <cal-util/timeutil.h> -#include <gui/alarm.h> -#include <gui/gnome-cal.h> -#include <gui/calendar-commands.h> +#include "alarm.h" +#include "calendar-commands.h" +#include "calendar-config.h" #include "component-factory.h" #include "control-factory.h" #include "e-itip-control.h" @@ -59,10 +58,10 @@ init_bonobo (int *argc, char **argv) int main (int argc, char **argv) { - #ifdef ENABLE_NLS +#ifdef ENABLE_NLS bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); textdomain(PACKAGE); - #endif +#endif init_bonobo (&argc, argv); glade_gnome_init (); |