aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-window.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-01-20 07:42:33 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-01-20 08:08:01 +0800
commit8e2902eefc466c662bd7bef0533de05db0897c49 (patch)
tree60390d16d242307e7dfc3310149e23acf1f225bf /shell/e-shell-window.c
parent88c48563537f3e7777193ff9ba5d9418f0038390 (diff)
downloadgsoc2013-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 'shell/e-shell-window.c')
-rw-r--r--shell/e-shell-window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c
index 3e9be0f845..e3f383ed11 100644
--- a/shell/e-shell-window.c
+++ b/shell/e-shell-window.c
@@ -422,7 +422,7 @@ shell_window_construct_menubar (EShellWindow *shell_window)
parent = gtk_widget_get_parent (main_menu);
g_object_ref (parent);
gtk_container_remove ((GtkContainer *) parent, main_menu);
- child = gtk_hbox_new (FALSE, 0);
+ child = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_box_pack_start ((GtkBox *) child, main_menu, TRUE, TRUE, 0);
gtk_widget_show (child);
gtk_container_add ((GtkContainer *) parent, child);
@@ -462,7 +462,7 @@ shell_window_construct_toolbar (EShellWindow *shell_window)
shell = e_shell_window_get_shell (shell_window);
ui_manager = e_shell_window_get_ui_manager (shell_window);
- box = gtk_hbox_new (FALSE, 0);
+ box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show (box);
g_object_bind_property (
@@ -573,7 +573,7 @@ shell_window_construct_content (EShellWindow *shell_window)
GtkWidget *box;
GtkWidget *widget;
- box = gtk_vbox_new (FALSE, 0);
+ box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_widget_show (box);
widget = e_alert_bar_new ();
@@ -607,7 +607,7 @@ shell_window_construct_taskbar (EShellWindow *shell_window)
shell = e_shell_window_get_shell (shell_window);
- status_area = gtk_hbox_new (FALSE, 3);
+ status_area = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 3);
gtk_container_set_border_width (GTK_CONTAINER (status_area), 3);
g_object_bind_property (