diff options
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-page.c | 5 |
2 files changed, 7 insertions, 6 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index fd3bfd86d4..98623349cd 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,4 +1,10 @@ -2006-03-07 Harry Lu <harry.lu@sun.com> +2006-03-22 Harry Lu <harry.lu@sun.com> + + Fix for 333697 + * gui/dialogs/task-page.c: (task_page_init), (sensitize_widgets): + remove two useless widgets: sendoptions_frame and sendoptions_button. + +2006-03-22 Harry Lu <harry.lu@sun.com> Fix for 333706 diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c index d474661c28..b449c62995 100644 --- a/calendar/gui/dialogs/task-page.c +++ b/calendar/gui/dialogs/task-page.c @@ -97,8 +97,6 @@ struct _TaskPagePrivate { GtkWidget *categories; GtkWidget *source_selector; - GtkWidget *sendoptions_frame; - GtkWidget *sendoptions_button; /* Meeting related items */ GtkWidget *list_box; @@ -191,8 +189,6 @@ task_page_init (TaskPage *tpage) priv->classification = E_CAL_COMPONENT_CLASS_NONE; priv->categories_btn = NULL; priv->categories = NULL; - priv->sendoptions_frame = NULL; - priv->sendoptions_button = NULL; priv->sendoptions_shown = FALSE; priv->sod = NULL; @@ -401,7 +397,6 @@ sensitize_widgets (TaskPage *tpage) gtk_widget_set_sensitive (priv->timezone, !read_only); gtk_widget_set_sensitive (priv->description, !read_only); gtk_widget_set_sensitive (priv->categories_btn, !read_only); - gtk_widget_set_sensitive (priv->sendoptions_button, !read_only); gtk_entry_set_editable (GTK_ENTRY (priv->categories), !read_only); gtk_widget_set_sensitive (priv->organizer, !read_only); |