diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-01-17 08:42:56 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-01-17 08:42:56 +0800 |
commit | bda8b73fe19ec3881f79f8d3d8cfc575dceef6de (patch) | |
tree | 1bd5f616f2629d43cc2518a5aedde70643b9cd58 | |
parent | bd788027df6589ff8b52c87a913322ae9065c394 (diff) | |
download | gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar.gz gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar.bz2 gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar.lz gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar.xz gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.tar.zst gsoc2013-evolution-bda8b73fe19ec3881f79f8d3d8cfc575dceef6de.zip |
default component classification to PUBLIC. Fixes internal bug #1066
2002-01-15 Rodrigo Moya <rodrigo@ximian.com>
* gui/dialogs/task-page.c (task_page_fill_widgets): default component
classification to PUBLIC. Fixes internal bug #1066
svn path=/trunk/; revision=15348
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-page.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 39f4a5a164..280990c482 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2002-01-15 Rodrigo Moya <rodrigo@ximian.com> + + * gui/dialogs/task-page.c (task_page_fill_widgets): default component + classification to PUBLIC. Fixes internal bug #1066 + 2002-01-14 JP Rosevear <jpr@ximian.com> * conduits/calendar/calendar-conduit.c: move all functions here, diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c index 17dec0d212..6b55b58c84 100644 --- a/calendar/gui/dialogs/task-page.c +++ b/calendar/gui/dialogs/task-page.c @@ -446,9 +446,11 @@ task_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; } /* Categories */ |