aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/event-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-02-09 08:48:07 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-02-09 08:48:07 +0800
commitfd6e9b75700544aec9ce03e5380e7385f4cce4f8 (patch)
tree2c615e0eeb82ba21a6e313278332e4c24925ec97 /calendar/gui/event-editor.c
parent11c5b60d8cae375aed02a6bb1cfb8c483550158b (diff)
downloadgsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar.gz
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar.bz2
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar.lz
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar.xz
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.tar.zst
gsoc2013-evolution-fd6e9b75700544aec9ce03e5380e7385f4cce4f8.zip
fill in new classification stuff properly (get_widgets): load new class.
2001-02-08 JP Rosevear <jpr@ximian.com> * gui/dialogs/task-editor.c (fill_widgets): fill in new classification stuff properly (get_widgets): load new class. widgets (init_widgets): if the class. widgets change, mark the dialog dirty (dialog_to_comp_object): set the comp class. from the new widgets * gui/dialogs/task-editor-dialog.glade: Make more consistent, fixing bugs 1247 and 1249 * gui/dialogs/task-editor.c (fill_widgets): * gui/event-editor-dialog.glade: Gui tidying * gui/event-editor.c: Remove old alarm cruft * cal-util/cal-component.c (cal_component_set_url): Don't try and write an empty string as a property svn path=/trunk/; revision=8132
Diffstat (limited to 'calendar/gui/event-editor.c')
-rw-r--r--calendar/gui/event-editor.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index 51dc50d90c..47ef3efa6e 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -1229,7 +1229,7 @@ init_widgets (EventEditor *ee)
* field gets set whenever a field is changed.
*/
- /* General Page. */
+ /* Appointment Page */
gtk_signal_connect (GTK_OBJECT (priv->general_summary), "changed",
GTK_SIGNAL_FUNC (field_changed), ee);
gtk_signal_connect (GTK_OBJECT (priv->description), "changed",
@@ -1255,27 +1255,6 @@ static const int classification_map[] = {
-1
};
-#if 0
-static const int alarm_unit_map[] = {
- ALARM_MINUTES,
- ALARM_HOURS,
- ALARM_DAYS,
- -1
-};
-
-static void
-alarm_unit_set (GtkWidget *widget, enum AlarmUnit unit)
-{
- e_dialog_option_menu_set (widget, unit, alarm_unit_map);
-}
-
-static enum AlarmUnit
-alarm_unit_get (GtkWidget *widget)
-{
- return e_dialog_option_menu_get (widget, alarm_unit_map);
-}
-#endif
-
static const int month_pos_map[] = { 0, 1, 2, 3, 4, -1 };
static const int weekday_map[] = { 0, 1, 2, 3, 4, 5, 6, -1 };