diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 23:50:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-12 02:14:04 +0800 |
commit | ebcce86769d174cce6e881740c5e9bcedce28e06 (patch) | |
tree | b2cc2d18ceb0c3bd3e78f5b768c1b6926b69bb4a /shell/e-shell-switcher.c | |
parent | 1e3deb31476cf0026011876327be83e9a47847ee (diff) | |
download | gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.gz gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.zst gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.zip |
Coding style and whitespace cleanups.
Diffstat (limited to 'shell/e-shell-switcher.c')
-rw-r--r-- | shell/e-shell-switcher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-switcher.c b/shell/e-shell-switcher.c index 9569a51a12..fec943c021 100644 --- a/shell/e-shell-switcher.c +++ b/shell/e-shell-switcher.c @@ -152,7 +152,7 @@ shell_switcher_layout_actions (EShellSwitcher *switcher) (len * H_PADDING)) / len; else extra_width = 0; - for (p = rows [i]; p != NULL; p = p->next) { + for (p = rows[i]; p != NULL; p = p->next) { GtkAllocation child_allocation; child_allocation.x = x; @@ -169,7 +169,7 @@ shell_switcher_layout_actions (EShellSwitcher *switcher) } for (i = 0; i <= row_last; i++) - g_list_free (rows [i]); + g_list_free (rows[i]); g_free (rows); return y - allocation.y; |