diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:09:00 +0800 |
commit | 777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1 (patch) | |
tree | dfab9ca8f30c7b1539f86dfe19b8bf761d6a899c /calendar/gui/e-memo-table.c | |
parent | 83675abbc2b3a3bc6421094a56651d021fc0cdcd (diff) | |
download | gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.gz gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.zst gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'calendar/gui/e-memo-table.c')
-rw-r--r-- | calendar/gui/e-memo-table.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/calendar/gui/e-memo-table.c b/calendar/gui/e-memo-table.c index d8388d066b..872408c8da 100644 --- a/calendar/gui/e-memo-table.c +++ b/calendar/gui/e-memo-table.c @@ -121,8 +121,8 @@ memo_table_emit_status_message (EMemoTable *memo_table, } /* Returns the current time, for the ECellDateEdit items. - FIXME: Should probably use the timezone of the item rather than the - current timezone, though that may be difficult to get from here. */ + * FIXME: Should probably use the timezone of the item rather than the + * current timezone, though that may be difficult to get from here. */ static struct tm memo_table_get_current_time (ECellDateEdit *ecde, gpointer user_data) @@ -765,7 +765,8 @@ memo_table_cut_clipboard (ESelectable *selectable) /* Helper for memo_table_copy_clipboard() */ static void -copy_row_cb (gint model_row, gpointer data) +copy_row_cb (gint model_row, + gpointer data) { EMemoTable *memo_table; ECalModelComponent *comp_data; @@ -976,7 +977,8 @@ memo_table_paste_clipboard (ESelectable *selectable) * gint pointed to by the closure data. */ static void -get_selected_row_cb (gint model_row, gpointer data) +get_selected_row_cb (gint model_row, + gpointer data) { gint *row; @@ -1261,7 +1263,8 @@ struct get_selected_uids_closure { /* Used from e_table_selected_row_foreach(), builds a list of the selected UIDs */ static void -add_uid_cb (gint model_row, gpointer data) +add_uid_cb (gint model_row, + gpointer data) { struct get_selected_uids_closure *closure; ECalModelComponent *comp_data; |