aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-03-11 00:49:16 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-03-11 00:50:11 +0800
commitaa967cace25a66c1556037d72c24dcb75a3c0da8 (patch)
treeb783cef4d57d7a5e393730541fd248d97fd2b099 /mail
parent0ed9a6492a19c767ac838baf63dd753f180688e2 (diff)
downloadgsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar.gz
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar.bz2
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar.lz
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar.xz
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.tar.zst
gsoc2013-evolution-aa967cace25a66c1556037d72c24dcb75a3c0da8.zip
Bug 695570 - Don't use gtk_container_add() to pack a GtkBox
Diffstat (limited to 'mail')
-rw-r--r--mail/em-subscription-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-subscription-editor.c b/mail/em-subscription-editor.c
index 308c06bb29..c8b3c016e3 100644
--- a/mail/em-subscription-editor.c
+++ b/mail/em-subscription-editor.c
@@ -1761,7 +1761,7 @@ em_subscription_editor_init (EMSubscriptionEditor *editor)
widget = gtk_notebook_new ();
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE);
gtk_notebook_set_show_border (GTK_NOTEBOOK (widget), FALSE);
- gtk_container_add (GTK_CONTAINER (container), widget);
+ gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0);
editor->priv->notebook = widget;
gtk_widget_show (widget);