diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-19 02:05:05 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-19 02:05:38 +0800 |
commit | dcf2c0e754d6e251733cea74c2427738122620af (patch) | |
tree | 358d2c639c2a5b5cf5fc8f28c515076f8b4d4e5d /shell | |
parent | 76fc1247ba88575c0f6e0040672e19e66f53da4f (diff) | |
download | gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.gz gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.bz2 gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.lz gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.xz gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.zst gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.zip |
More whitespace cleanup.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-window-commands.c | 4 | ||||
-rw-r--r-- | shell/e-shell-window.c | 4 | ||||
-rw-r--r-- | shell/e-user-creatable-items-handler.c | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c index 191ca5b994..731f17b49b 100644 --- a/shell/e-shell-window-commands.c +++ b/shell/e-shell-window-commands.c @@ -1305,7 +1305,7 @@ view_statusbar_item_toggled_handler (BonoboUIComponent *ui_component, GConfClient *gconf_client; is_visible = state[0] == '1'; - if(is_visible) + if (is_visible) gtk_widget_show (status_bar); else gtk_widget_hide (status_bar); @@ -1326,7 +1326,7 @@ view_sidebar_item_toggled_handler (BonoboUIComponent *ui_component, GConfClient *gconf_client; is_visible = state[0] == '1'; - if(is_visible) + if (is_visible) gtk_widget_show (side_bar); else gtk_widget_hide (side_bar); diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 18d390d570..69980dc5c5 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -589,7 +589,7 @@ setup_status_bar (EShellWindow *window) gtk_widget_set_size_request (GTK_WIDGET (priv->status_bar), -1, height * 2); gconf_client = gconf_client_get_default (); - if(gconf_client_get_bool (gconf_client,"/apps/evolution/shell/view_defaults/statusbar_visible",NULL)) + if (gconf_client_get_bool (gconf_client,"/apps/evolution/shell/view_defaults/statusbar_visible",NULL)) gtk_widget_show (priv->status_bar); g_object_unref (gconf_client); @@ -1019,7 +1019,7 @@ e_shell_window_new (EShell *shell, setup_widgets (window); - if(gconf_client_get_bool (gconf_client,"/apps/evolution/shell/view_defaults/sidebar_visible",NULL)) + if (gconf_client_get_bool (gconf_client,"/apps/evolution/shell/view_defaults/sidebar_visible",NULL)) gtk_widget_show (priv->sidebar); else gtk_widget_hide (priv->sidebar); diff --git a/shell/e-user-creatable-items-handler.c b/shell/e-user-creatable-items-handler.c index 417ac0221a..6fef2b7309 100644 --- a/shell/e-user-creatable-items-handler.c +++ b/shell/e-user-creatable-items-handler.c @@ -669,17 +669,17 @@ gtk_separator_func (EUserCreatableItemsHandler *handler, gpointer menu, gint nth static void set_combo_button_style (EComboButton *button, const gchar *style, GdkPixbuf *icon) { - if(!g_ascii_strcasecmp (style,"both-horiz")){ + if (!g_ascii_strcasecmp (style,"both-horiz")) { e_combo_button_pack_hbox (button); e_combo_button_set_label (button, _("New")); e_combo_button_set_icon (button, icon); } - else if(!g_ascii_strcasecmp (style,"icons")){ + else if (!g_ascii_strcasecmp (style,"icons")) { e_combo_button_pack_hbox (button); e_combo_button_set_icon (button, icon); e_combo_button_set_label (button, ""); } - else if(!g_ascii_strcasecmp(style,"text")){ + else if (!g_ascii_strcasecmp(style,"text")) { e_combo_button_pack_hbox (button); e_combo_button_set_label (button, _("New")); e_combo_button_set_icon (button, NULL); |