diff options
| author | JP Rosevear <jpr@ximian.com> | 2001-05-10 04:29:18 +0800 |
|---|---|---|
| committer | JP Rosevear <jpr@src.gnome.org> | 2001-05-10 04:29:18 +0800 |
| commit | 757cfd07389b2c6bb28de7dfbbc491e96c9ff727 (patch) | |
| tree | 70581b42432146b724604ef9bef3a9ee45185dd1 | |
| parent | 3f207278fb889bacbfda7afa3899257d0c29888c (diff) | |
| download | gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar.gz gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar.bz2 gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar.lz gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar.xz gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.tar.zst gsoc2013-evolution-757cfd07389b2c6bb28de7dfbbc491e96c9ff727.zip | |
switch on the correct widget and map
2001-05-09 JP Rosevear <jpr@ximian.com>
* gui/event-editor.c (reminder_add_cb): switch on the correct
widget and map
svn path=/trunk/; revision=9735
| -rw-r--r-- | calendar/ChangeLog | 16 | ||||
| -rw-r--r-- | calendar/gui/event-editor.c | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 39c007d1f3..fecd71e071 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,19 @@ +2001-05-09 JP Rosevear <jpr@ximian.com> + + * gui/event-editor.c (reminder_add_cb): switch on the correct + widget and map + +2001-05-08 JP Rosevear <jpr@ximian.com> + + * gui/e-itip-control.c (e_itip_control_factory): unref the + property bag when we finish with it + + * gui/evolution-calendar-control.c (calendar_properties_init): ditto + + * gui/control-factory.c (calendar_properties_init): ditto + + * gui/calendar-summary.c (create_summary_view): ditto + 2001-05-08 JP Rosevear <jpr@ximian.com> * cal-util/cal-component.c (cal_component_alarm_free): diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c index b497679bac..242ef67226 100644 --- a/calendar/gui/event-editor.c +++ b/calendar/gui/event-editor.c @@ -3064,7 +3064,7 @@ reminder_add_cb (GtkWidget *widget, EventEditor *ee) else trigger.u.rel_duration.is_neg = 0; - switch (e_dialog_option_menu_get (priv->reminder_relative, reminder_relative_map)) { + switch (e_dialog_option_menu_get (priv->reminder_value_units, reminder_value_map)) { case MINUTES: trigger.u.rel_duration.minutes = e_dialog_spin_get_int (priv->reminder_interval_value); break; |
