From 136f5d981f5eee654d77c4007b47c5becb1a366f Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 3 Oct 2009 23:59:32 +0200 Subject: [PATCH] Use "orientation" property of the toolbar instead of the function The function is superseded with the introduction of the orientable interface in new GTK+ releases, but the property is the same. --- midori/midori-panel.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/midori/midori-panel.c b/midori/midori-panel.c index 6ae27e1c..13680175 100644 --- a/midori/midori-panel.c +++ b/midori/midori-panel.c @@ -356,8 +356,7 @@ midori_panel_init (MidoriPanel* panel) gtk_toolbar_set_style (GTK_TOOLBAR (panel->toolbar), GTK_TOOLBAR_BOTH); gtk_toolbar_set_icon_size (GTK_TOOLBAR (panel->toolbar), GTK_ICON_SIZE_BUTTON); - gtk_toolbar_set_orientation (GTK_TOOLBAR (panel->toolbar), - GTK_ORIENTATION_VERTICAL); + g_object_set (panel->toolbar, "orientation", GTK_ORIENTATION_VERTICAL, NULL); gtk_box_pack_start (GTK_BOX (panel), panel->toolbar, FALSE, FALSE, 0); gtk_widget_show_all (panel->toolbar); vbox = gtk_vbox_new (FALSE, 0);