diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:24:42 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:11 +0800 |
commit | 54da4fc09cf226fdb59b9f0c70555e2e57dc1f91 (patch) | |
tree | c62c9ac6d08670dffc400ff00117508512ce4f8b /shell/e-shell-window.c | |
parent | fe20f70779fb486169a0735499d24e001ffa0cab (diff) | |
download | gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.gz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.bz2 gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.lz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.xz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.zst gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.zip |
Coding style cleanups.
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 1ba075d957..7d8e6c5f85 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -362,11 +362,11 @@ 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); + gtk_container_remove ((GtkContainer *) parent, main_menu); child = gtk_hbox_new (FALSE, 0); - gtk_box_pack_start ((GtkBox *)child, main_menu, TRUE, TRUE, 0); + gtk_box_pack_start ((GtkBox *) child, main_menu, TRUE, TRUE, 0); gtk_widget_show (child); - gtk_container_add ((GtkContainer *)parent, child); + gtk_container_add ((GtkContainer *) parent, child); shell_window->priv->menubar_box = child; g_object_bind_property ( |