From: Christian Dywan Date: Sat, 3 Oct 2009 21:59:32 +0000 (+0200) Subject: Use "orientation" property of the toolbar instead of the function X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=136f5d981f5eee654d77c4007b47c5becb1a366f;p=midori 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. --- 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);