aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarry Lu <harry.lu@sun.com>2006-03-22 17:45:38 +0800
committerHarry Lu <haip@src.gnome.org>2006-03-22 17:45:38 +0800
commitd8421d6879d92459c7a4af46b5d393e6c5bc0621 (patch)
treea1e240806dcf0ab461d97325a6ccea11f2d410f6
parent95269a8327a4699ad46c69f8ff117b39e77a600f (diff)
downloadgsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar.gz
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar.bz2
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar.lz
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar.xz
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.tar.zst
gsoc2013-evolution-d8421d6879d92459c7a4af46b5d393e6c5bc0621.zip
Fix for 333697 remove two useless widgets: sendoptions_frame and
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. svn path=/trunk/; revision=31735
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/dialogs/task-page.c5
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);