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-dialpad-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-dialpad-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-dialpad-widget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-dialpad-widget.c b/libempathy-gtk/empathy-dialpad-widget.c index 529aff26f..1782dc807 100644 --- a/libempathy-gtk/empathy-dialpad-widget.c +++ b/libempathy-gtk/empathy-dialpad-widget.c @@ -140,7 +140,7 @@ empathy_dialpad_widget_init (EmpathyDialpadWidget *self) for (i = 0; dtmfbuttons[i].label != NULL; i++) { - GtkWidget *vbox = gtk_vbox_new (FALSE, 0); + GtkWidget *vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); GtkWidget *button = gtk_button_new (); GtkWidget *label; gchar *str; |