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-alarm-list.c | |
parent | 1e3deb31476cf0026011876327be83e9a47847ee (diff) | |
download | gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.gz gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.bz2 gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.lz gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.xz gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.zst gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.zip |
Coding style and whitespace cleanups.
Diffstat (limited to 'calendar/gui/e-alarm-list.c')
-rw-r--r-- | calendar/gui/e-alarm-list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-alarm-list.c b/calendar/gui/e-alarm-list.c index 4fdf5e71eb..2e6a12e880 100644 --- a/calendar/gui/e-alarm-list.c +++ b/calendar/gui/e-alarm-list.c @@ -35,7 +35,7 @@ #define IS_VALID_ITER(dt_list, iter) (iter!= NULL && iter->user_data != NULL && \ dt_list->stamp == iter->stamp) -static GType column_types [E_ALARM_LIST_NUM_COLUMNS]; +static GType column_types[E_ALARM_LIST_NUM_COLUMNS]; static void e_alarm_list_init (EAlarmList *file_list); static void e_alarm_list_class_init (EAlarmListClass *class); @@ -99,7 +99,7 @@ e_alarm_list_get_type (void) NULL }; - column_types [E_ALARM_LIST_COLUMN_DESCRIPTION] = G_TYPE_STRING; + column_types[E_ALARM_LIST_COLUMN_DESCRIPTION] = G_TYPE_STRING; alarm_list_type = g_type_register_static (G_TYPE_OBJECT, "EAlarmList", &alarm_list_info, 0); @@ -257,7 +257,7 @@ e_alarm_list_get_column_type (GtkTreeModel *tree_model, index >= 0, G_TYPE_INVALID); alarm_list->columns_dirty = TRUE; - return column_types [index]; + return column_types[index]; } const ECalComponentAlarm * @@ -563,7 +563,7 @@ e_alarm_list_get_value (GtkTreeModel *tree_model, g_return_if_fail (E_ALARM_LIST (tree_model)->stamp == iter->stamp); g_return_if_fail (IS_VALID_ITER (alarm_list, iter)); - g_value_init (value, column_types [column]); + g_value_init (value, column_types[column]); if (!alarm_list->list) return; |