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 /calendar/gui/e-memo-table.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 'calendar/gui/e-memo-table.c')
-rw-r--r-- | calendar/gui/e-memo-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-memo-table.c b/calendar/gui/e-memo-table.c index eafa3521c8..8355aa9616 100644 --- a/calendar/gui/e-memo-table.c +++ b/calendar/gui/e-memo-table.c @@ -572,7 +572,7 @@ memo_table_query_tooltip (GtkWidget *widget, &tmp_tm, use_24_hour_format, FALSE, FALSE, buff, 1000); - if (buff [0]) { + if (buff[0]) { /* Translators: This is followed by an event's start date/time */ g_string_append (tmp2, _("Start: ")); g_string_append (tmp2, buff); @@ -588,7 +588,7 @@ memo_table_query_tooltip (GtkWidget *widget, &tmp_tm, use_24_hour_format, FALSE, FALSE, buff, 1000); - if (buff [0]) { + if (buff[0]) { if (tmp2->len) g_string_append (tmp2, "; "); |