summaryrefslogtreecommitdiff
path: root/pidgin/gtkroomlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'pidgin/gtkroomlist.c')
-rw-r--r--pidgin/gtkroomlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pidgin/gtkroomlist.c b/pidgin/gtkroomlist.c
index a078673793..a8f934a8a0 100644
--- a/pidgin/gtkroomlist.c
+++ b/pidgin/gtkroomlist.c
@@ -30,6 +30,7 @@
#include "connection.h"
#include "notify.h"
+#include "gtk3compat.h"
#include "gtkroomlist.h"
typedef struct _PidginRoomlistDialog {
@@ -578,7 +579,7 @@ pidgin_roomlist_dialog_new_with_account(PurpleAccount *account)
/* Create the parent vbox for everything. */
vbox = pidgin_dialog_get_vbox_with_properties(GTK_DIALOG(window), FALSE, PIDGIN_HIG_BORDER);
- vbox2 = gtk_vbox_new(FALSE, PIDGIN_HIG_BORDER);
+ vbox2 = gtk_box_new(GTK_ORIENTATION_VERTICAL, PIDGIN_HIG_BORDER);
gtk_container_add(GTK_CONTAINER(vbox), vbox2);
gtk_widget_show(vbox2);