diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-16 23:32:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-21 18:00:33 +0800 |
commit | 211f86a65565eaf3c3f0a9159dffe191298c0ff6 (patch) | |
tree | 709e4f459ca4cd97afdfbe2fe32a91dd177cf589 /libempathy-gtk/empathy-individual-widget.c | |
parent | 8b6c87f1b7da9c0ba239bf3892aec9875a39fd77 (diff) | |
download | gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar.gz gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar.bz2 gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar.lz gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar.xz gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.tar.zst gsoc2013-empathy-211f86a65565eaf3c3f0a9159dffe191298c0ff6.zip |
use gtk_separator_new() instead of gtk_hseparator_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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-widget.c b/libempathy-gtk/empathy-individual-widget.c index 08c1c1c6b..aa7a7f053 100644 --- a/libempathy-gtk/empathy-individual-widget.c +++ b/libempathy-gtk/empathy-individual-widget.c @@ -1540,7 +1540,7 @@ add_persona (EmpathyIndividualWidget *self, gtk_widget_show (GTK_WIDGET (grid)); /* Pack a separator after the grid */ - separator = gtk_hseparator_new (); + separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); g_object_set_data (G_OBJECT (grid), "separator", separator); gtk_box_pack_start (GTK_BOX (priv->vbox_individual), separator, FALSE, FALSE, 0); |