diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-01-20 07:42:33 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-01-20 08:08:01 +0800 |
commit | 8e2902eefc466c662bd7bef0533de05db0897c49 (patch) | |
tree | 60390d16d242307e7dfc3310149e23acf1f225bf /modules/plugin-manager | |
parent | 88c48563537f3e7777193ff9ba5d9418f0038390 (diff) | |
download | gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar.gz gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar.bz2 gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar.lz gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar.xz gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.tar.zst gsoc2013-evolution-8e2902eefc466c662bd7bef0533de05db0897c49.zip |
Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.
Clean up resulting deprecation warnings, which were all related to
GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
Diffstat (limited to 'modules/plugin-manager')
-rw-r--r-- | modules/plugin-manager/evolution-plugin-manager.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/plugin-manager/evolution-plugin-manager.c b/modules/plugin-manager/evolution-plugin-manager.c index 759b3fdd86..6c24ee6981 100644 --- a/modules/plugin-manager/evolution-plugin-manager.c +++ b/modules/plugin-manager/evolution-plugin-manager.c @@ -261,7 +261,7 @@ action_plugin_manager_cb (GtkAction *action, gtk_window_set_default_size (GTK_WINDOW (dialog), 640, 400); gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); - hbox = gtk_hbox_new (FALSE, 12); + hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); gtk_box_pack_start (GTK_BOX (content_area), hbox, TRUE, TRUE, 0); @@ -288,8 +288,8 @@ action_plugin_manager_cb (GtkAction *action, notebook, "switch-page", G_CALLBACK (eppm_switch_page_cb), NULL); - overview_page = gtk_vbox_new (FALSE, 0); - configure_page = gtk_vbox_new (FALSE, 0); + overview_page = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + configure_page = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); g_object_ref_sink (configure_page); gtk_container_set_border_width (GTK_CONTAINER (overview_page), 12); gtk_container_set_border_width (GTK_CONTAINER (configure_page), 12); @@ -389,7 +389,7 @@ action_plugin_manager_cb (GtkAction *action, gtk_box_pack_start (GTK_BOX (hbox), notebook, TRUE, TRUE, 0); /* this is plugin's name label */ - subvbox = gtk_vbox_new (FALSE, 6); + subvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); m->items[0] = g_object_new ( GTK_TYPE_LABEL, "wrap", TRUE, @@ -406,7 +406,7 @@ action_plugin_manager_cb (GtkAction *action, for (i = 1; i < LABEL_LAST; i++) { gchar *markup; - subvbox = gtk_vbox_new (FALSE, 6); + subvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); markup = g_markup_printf_escaped ( "<span weight=\"bold\">%s:</span>", |