diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d0ac50d40f..cb18f6fa87 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-12-06 Rodrigo Moya <rodrigo@ximian.com> + + * gui/dialogs/event-page.c (event_page_fill_widgets): default + component classification to PUBLIC + 2001-12-06 Jon Trowbridge <trow@ximian.com> * gui/dialogs/event-editor.c (event_editor_destroy): Explicitly diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 48533ea2e5..a12bce2c47 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -532,9 +532,11 @@ event_page_fill_widgets (CompEditorPage *page, CalComponent *comp) break; default: - /* What do do? We can't g_assert_not_reached() since it is a - * value from an external file. - */ + /* default to PUBLIC */ + e_dialog_radio_set (priv->classification_public, + CAL_COMPONENT_CLASS_PUBLIC, + classification_map); + break; } |