diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-17 00:07:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-21 18:00:35 +0800 |
commit | 76d770933b31a9a928942dc0782b0cdb23ea7223 (patch) | |
tree | 457e48adb427f1c264b1bab8cdf1ebd060a74d3d /libempathy-gtk/empathy-individual-widget.c | |
parent | bd43c34901fbcc8202c3e96246fe77a31a4154db (diff) | |
download | gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.gz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.bz2 gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.lz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.xz gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.tar.zst gsoc2013-empathy-76d770933b31a9a928942dc0782b0cdb23ea7223.zip |
use gtk_box_new() instead of gtk_[h,v]box_new()
https://bugzilla.gnome.org/show_bug.cgi?id=662903
Diffstat (limited to 'libempathy-gtk/empathy-individual-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-widget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-individual-widget.c b/libempathy-gtk/empathy-individual-widget.c index aa7a7f053..5a1c559d1 100644 --- a/libempathy-gtk/empathy-individual-widget.c +++ b/libempathy-gtk/empathy-individual-widget.c @@ -1323,7 +1323,7 @@ alias_presence_avatar_favourite_set_up (EmpathyIndividualWidget *self, current_row++; /* Presence */ - priv->hbox_presence = gtk_hbox_new (FALSE, 6); + priv->hbox_presence = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); /* Presence image */ image = gtk_image_new_from_stock (GTK_STOCK_MISSING_IMAGE, @@ -1478,7 +1478,7 @@ add_persona (EmpathyIndividualWidget *self, gtk_widget_show (label); /* Pack the protocol icon with the account name in an hbox */ - hbox = GTK_BOX (gtk_hbox_new (FALSE, 6)); + hbox = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6)); account_label = gtk_label_new (NULL); gtk_label_set_selectable (GTK_LABEL (account_label), |