aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-new-call-dialog.c
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-18 14:28:42 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2009-12-19 07:48:55 +0800
commit2afe25753afb3279629a1e63c9340a4738c9bfa9 (patch)
tree8240d2c36ac98696eb734d1c14d42f9a50cd7b4b /libempathy-gtk/empathy-new-call-dialog.c
parent270d39eae11b2723a086e10e5dd9c358d1e90ade (diff)
downloadgsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar.gz
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar.bz2
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar.lz
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar.xz
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.tar.zst
gsoc2013-empathy-2afe25753afb3279629a1e63c9340a4738c9bfa9.zip
[EmpathyContactSelectorDialog] switch from table_contents to VBox
This makes it more flexible to add other contents to the dialog.
Diffstat (limited to 'libempathy-gtk/empathy-new-call-dialog.c')
-rw-r--r--libempathy-gtk/empathy-new-call-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-new-call-dialog.c b/libempathy-gtk/empathy-new-call-dialog.c
index 67bfb589d..2437b4978 100644
--- a/libempathy-gtk/empathy-new-call-dialog.c
+++ b/libempathy-gtk/empathy-new-call-dialog.c
@@ -177,8 +177,8 @@ empathy_new_call_dialog_init (EmpathyNewCallDialog *dialog)
/* add video toggle */
priv->check_video = gtk_check_button_new_with_mnemonic (_("Send _Video"));
- gtk_table_attach_defaults (GTK_TABLE (parent->table_contact),
- priv->check_video, 1, 2, 2, 3);
+ gtk_box_pack_end (GTK_BOX (parent->vbox), priv->check_video,
+ FALSE, TRUE, 0);
gtk_widget_show (priv->check_video);