diff options
Diffstat (limited to 'calendar/gui/e-task-table.c')
-rw-r--r-- | calendar/gui/e-task-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-task-table.c b/calendar/gui/e-task-table.c index 45ac6cf09c..d1c03563a2 100644 --- a/calendar/gui/e-task-table.c +++ b/calendar/gui/e-task-table.c @@ -785,7 +785,7 @@ task_table_query_tooltip (GtkWidget *widget, &tmp_tm, use_24_hour_format, FALSE, FALSE, buff, 1000); - if (buff [0]) { + if (buff[0]) { g_string_append (tmp2, _("Start: ")); g_string_append (tmp2, buff); } @@ -800,7 +800,7 @@ task_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, "; "); |