diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-08 03:01:42 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-08 03:01:42 +0800 |
commit | b5a61327da495147f0a45b4a9f6ee3a77687eeab (patch) | |
tree | c982108602c3bda5e204f1c4557a400cf96e00d0 /calendar/eventedit.c | |
parent | eaba896a148c812a3744805bcfb56b09753bc896 (diff) | |
download | gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar.gz gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar.bz2 gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar.lz gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar.xz gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.tar.zst gsoc2013-evolution-b5a61327da495147f0a45b4a9f6ee3a77687eeab.zip |
More work in progress, wheeeee - Federico
svn path=/trunk/; revision=109
Diffstat (limited to 'calendar/eventedit.c')
-rw-r--r-- | calendar/eventedit.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/calendar/eventedit.c b/calendar/eventedit.c index 1a63bd60f5..7846eab86e 100644 --- a/calendar/eventedit.c +++ b/calendar/eventedit.c @@ -6,10 +6,11 @@ */ #include <gnome.h> +#include <string.h> #include "calendar.h" -#include "gnome-cal.h" #include "eventedit.h" #include "main.h" +#include "timeutil.h" static void event_editor_init (EventEditor *ee); GtkWindow *parent_class; @@ -202,10 +203,9 @@ alarm_toggle (GtkToggleButton *toggle, CalendarAlarm *alarm) #define FX GTK_FILL | GTK_EXPAND #define XCOL 6 -static GtkWidget * +static void ee_create_ae (GtkTable *table, char *str, CalendarAlarm *alarm, enum AlarmType type, int y) { - GtkWidget *timesel; char buffer [40]; alarm->w_enabled = gtk_check_button_new_with_label (str); @@ -253,7 +253,7 @@ ee_create_ae (GtkTable *table, char *str, CalendarAlarm *alarm, enum AlarmType t static GtkWidget * ee_alarm_widgets (EventEditor *ee) { - GtkWidget *table, *aalarm, *dalarm, *palarm, *malarm, *mailto, *mailte, *l; + GtkWidget *table, *mailto, *mailte, *l; l = gtk_frame_new (_("Alarms")); @@ -304,6 +304,7 @@ ee_classification_widgets (EventEditor *ee) * Retrieves the information from the CalendarAlarm widgets and stores them * on the CalendarAlarm generic values */ +void ee_store_alarm (CalendarAlarm *alarm, enum AlarmType type) { GtkWidget *item; |