diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-04 19:34:32 +0800 |
commit | fcbbdfbd18e15b4ee8322a0217cf03a689a5e033 (patch) | |
tree | e16cd2a2279558c6a2bfb6ca39fcbaac4c85ba59 /calendar/gui/ea-day-view-cell.c | |
parent | f78417c48861759d7b0c4535ecd3febe4638a7d3 (diff) | |
download | gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.gz gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.zst gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'calendar/gui/ea-day-view-cell.c')
-rw-r--r-- | calendar/gui/ea-day-view-cell.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/calendar/gui/ea-day-view-cell.c b/calendar/gui/ea-day-view-cell.c index a94a9d193f..4fe1c5bedb 100644 --- a/calendar/gui/ea-day-view-cell.c +++ b/calendar/gui/ea-day-view-cell.c @@ -69,7 +69,9 @@ e_day_view_cell_class_init (EDayViewCellClass *class) } EDayViewCell * -e_day_view_cell_new (EDayView *day_view, gint row, gint column) +e_day_view_cell_new (EDayView *day_view, + gint row, + gint column) { GObject *object; EDayViewCell *cell; @@ -95,7 +97,7 @@ static void ea_day_view_cell_class_init (EaDayViewCellClass *klass); static const gchar * ea_day_view_cell_get_name (AtkObject *accessible); static const gchar * ea_day_view_cell_get_description (AtkObject *accessible); -static AtkStateSet* ea_day_view_cell_ref_state_set (AtkObject *obj); +static AtkStateSet * ea_day_view_cell_ref_state_set (AtkObject *obj); static AtkObject * ea_day_view_cell_get_parent (AtkObject *accessible); static gint ea_day_view_cell_get_index_in_parent (AtkObject *accessible); @@ -168,7 +170,7 @@ ea_day_view_cell_class_init (EaDayViewCellClass *klass) class->get_index_in_parent = ea_day_view_cell_get_index_in_parent; } -AtkObject* +AtkObject * ea_day_view_cell_new (GObject *obj) { gpointer object; @@ -240,7 +242,7 @@ ea_day_view_cell_get_description (AtkObject *accessible) return ea_day_view_cell_get_name (accessible); } -static AtkStateSet* +static AtkStateSet * ea_day_view_cell_ref_state_set (AtkObject *obj) { AtkStateSet *state_set; @@ -326,8 +328,11 @@ atk_component_interface_init (AtkComponentIface *iface) static void component_interface_get_extents (AtkComponent *component, - gint *x, gint *y, gint *width, gint *height, - AtkCoordType coord_type) + gint *x, + gint *y, + gint *width, + gint *height, + AtkCoordType coord_type) { GObject *g_obj; AtkObject *atk_obj; |