aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-debug-window.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-17 00:07:51 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-21 18:00:35 +0800
commit76d770933b31a9a928942dc0782b0cdb23ea7223 (patch)
tree457e48adb427f1c264b1bab8cdf1ebd060a74d3d /src/empathy-debug-window.c
parentbd43c34901fbcc8202c3e96246fe77a31a4154db (diff)
downloadgsoc2013-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 'src/empathy-debug-window.c')
-rw-r--r--src/empathy-debug-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c
index 80dad106a..b298600a9 100644
--- a/src/empathy-debug-window.c
+++ b/src/empathy-debug-window.c
@@ -1439,7 +1439,7 @@ am_prepared_cb (GObject *am,
g_signal_connect (object, "key-press-event",
G_CALLBACK (debug_window_key_press_event_cb), NULL);
- vbox = gtk_vbox_new (FALSE, 0);
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_container_add (GTK_CONTAINER (object), vbox);
gtk_widget_show (vbox);