summaryrefslogtreecommitdiff
path: root/src/editor.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-08-27 06:38:50 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-08-27 06:38:50 (GMT)
commit35024acba0f134cfe09711e3f1a6f29a01257aeb (patch)
treebbdcf3903bb60df15d26b57e26018754d6a525eb /src/editor.c
parent10b620c3f7d6a9e78aa1e9d6dabef466d0b9e3af (diff)
Removed some warnings about deprecated calls to gtk_[hv]box_new().
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@395 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/editor.c')
-rw-r--r--src/editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.c b/src/editor.c
index 1c5fbd9..17468e3 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -168,7 +168,7 @@ GtkWidget *create_editor(void)
- vbox1 = gtk_vbox_new(FALSE, 0);
+ vbox1 = gtk_box_new(GTK_ORIENTATION_VERTICAL, 8);
gtk_widget_show(vbox1);
gtk_container_add(GTK_CONTAINER(result), vbox1);