aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-01-10 23:30:24 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-01-11 00:20:32 +0800
commitb1ed35f70d09601717e32eb5c762f79908b0bcf8 (patch)
treec4fa0b5f5d0dc7dd8cb1a2c3931fd25d97d08b41 /shell
parent54442be416bcdb1c3632fb9211d335f9b5cb3397 (diff)
downloadgsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.gz
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.bz2
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.lz
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.xz
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.tar.zst
gsoc2013-evolution-b1ed35f70d09601717e32eb5c762f79908b0bcf8.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-searchbar.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/shell/e-shell-searchbar.c b/shell/e-shell-searchbar.c
index b5d490df25..b62d255ec3 100644
--- a/shell/e-shell-searchbar.c
+++ b/shell/e-shell-searchbar.c
@@ -578,8 +578,8 @@ shell_searchbar_resize_idle_cb (gpointer user_data)
static gboolean
shell_searchbar_entry_focus_in_cb (GtkWidget *entry,
- GdkEvent *event,
- EShellSearchbar *searchbar)
+ GdkEvent *event,
+ EShellSearchbar *searchbar)
{
/* to not change background when user changes search entry content */
gtk_widget_set_name (entry, "searchbar_searchentry");
@@ -589,8 +589,8 @@ shell_searchbar_entry_focus_in_cb (GtkWidget *entry,
static gboolean
shell_searchbar_entry_focus_out_cb (GtkWidget *entry,
- GdkEvent *event,
- EShellSearchbar *searchbar)
+ GdkEvent *event,
+ EShellSearchbar *searchbar)
{
shell_searchbar_update_search_widgets (searchbar);
@@ -851,8 +851,10 @@ shell_searchbar_constructed (GObject *object)
searchbar->priv->css_provider = gtk_css_provider_new ();
widget = searchbar->priv->search_entry;
- gtk_style_context_add_provider (gtk_widget_get_style_context (widget),
- GTK_STYLE_PROVIDER (searchbar->priv->css_provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
+ gtk_style_context_add_provider (
+ gtk_widget_get_style_context (widget),
+ GTK_STYLE_PROVIDER (searchbar->priv->css_provider),
+ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
action = E_SHELL_WINDOW_ACTION_SEARCH_CLEAR (shell_window);