aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2004-10-12 01:02:40 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-10-12 01:02:40 +0800
commitbab4ad240f77663e1b9b8707fcc2ecaf30ca091a (patch)
tree33839cee6d2ad4c1505be9c297d5501924df105c /calendar/gui/dialogs/comp-editor.c
parent2432e22d47ec0c9bc190988a0708b4f13a0aa183 (diff)
downloadgsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar.gz
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar.bz2
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar.lz
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar.xz
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.tar.zst
gsoc2013-evolution-bab4ad240f77663e1b9b8707fcc2ecaf30ca091a.zip
Fixes #45951
2004-10-08 Rodrigo Moya <rodrigo@novell.com> Fixes #45951 * gui/dialogs/event-page.glade: * gui/dialogs/task-page.glade: attach the description field correctly to the table so that it scrolls correctly instead of making the dialog bigger as you write. * gui/dialogs/comp-editor.c (setup_widgets): no need to create an extra GtkVBox, just use the GtkDialog's one. svn path=/trunk/; revision=27538
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 8d26689eca..49b0a43715 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -384,21 +384,13 @@ static void
setup_widgets (CompEditor *editor)
{
CompEditorPrivate *priv;
- GtkWidget *vbox;
priv = editor->priv;
- /* Basic vbox */
- vbox = gtk_vbox_new (FALSE, GNOME_PAD_SMALL);
- gtk_widget_show (vbox);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), GNOME_PAD_SMALL);
- gtk_box_pack_start (GTK_BOX (GTK_DIALOG (editor)->vbox), vbox,
- TRUE, TRUE, 6);
-
/* Notebook */
priv->notebook = GTK_NOTEBOOK (gtk_notebook_new ());
gtk_widget_show (GTK_WIDGET (priv->notebook));
- gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (priv->notebook),
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (editor)->vbox), GTK_WIDGET (priv->notebook),
TRUE, TRUE, 6);
/* Buttons */