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/ea-week-view-cell.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/ea-week-view-cell.c')
-rw-r--r-- | calendar/gui/ea-week-view-cell.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/calendar/gui/ea-week-view-cell.c b/calendar/gui/ea-week-view-cell.c index 506a5f5724..fce7a9def1 100644 --- a/calendar/gui/ea-week-view-cell.c +++ b/calendar/gui/ea-week-view-cell.c @@ -69,7 +69,9 @@ e_week_view_cell_class_init (EWeekViewCellClass *class) } EWeekViewCell * -e_week_view_cell_new (EWeekView *week_view, gint row, gint column) +e_week_view_cell_new (EWeekView *week_view, + gint row, + gint column) { GObject *object; EWeekViewCell *cell; @@ -95,7 +97,7 @@ static void ea_week_view_cell_class_init (EaWeekViewCellClass *klass); static const gchar * ea_week_view_cell_get_name (AtkObject *accessible); static const gchar * ea_week_view_cell_get_description (AtkObject *accessible); -static AtkStateSet* ea_week_view_cell_ref_state_set (AtkObject *obj); +static AtkStateSet * ea_week_view_cell_ref_state_set (AtkObject *obj); static AtkObject * ea_week_view_cell_get_parent (AtkObject *accessible); static gint ea_week_view_cell_get_index_in_parent (AtkObject *accessible); @@ -169,7 +171,7 @@ ea_week_view_cell_class_init (EaWeekViewCellClass *klass) } -AtkObject* +AtkObject * ea_week_view_cell_new (GObject *obj) { gpointer object; @@ -252,7 +254,7 @@ ea_week_view_cell_get_description (AtkObject *accessible) return ea_week_view_cell_get_name (accessible); } -static AtkStateSet* +static AtkStateSet * ea_week_view_cell_ref_state_set (AtkObject *obj) { AtkStateSet *state_set; @@ -336,8 +338,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; |