aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/gal-a11y-e-cell.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-11 23:50:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:14:04 +0800
commitebcce86769d174cce6e881740c5e9bcedce28e06 (patch)
treeb2cc2d18ceb0c3bd3e78f5b768c1b6926b69bb4a /widgets/table/gal-a11y-e-cell.c
parent1e3deb31476cf0026011876327be83e9a47847ee (diff)
downloadgsoc2013-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 'widgets/table/gal-a11y-e-cell.c')
-rw-r--r--widgets/table/gal-a11y-e-cell.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/widgets/table/gal-a11y-e-cell.c b/widgets/table/gal-a11y-e-cell.c
index e9e5eb0455..b2962ba96c 100644
--- a/widgets/table/gal-a11y-e-cell.c
+++ b/widgets/table/gal-a11y-e-cell.c
@@ -126,7 +126,7 @@ gal_a11y_e_cell_ref_state_set (AtkObject *accessible)
g_return_val_if_fail (cell->state_set, NULL);
- g_object_ref(cell->state_set);
+ g_object_ref (cell->state_set);
return cell->state_set;
}
@@ -364,7 +364,7 @@ gal_a11y_e_cell_remove_action_by_name (GalA11yECell *cell,
static gint
gal_a11y_e_cell_action_get_n_actions (AtkAction *action)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
if (cell->action_list != NULL)
return g_list_length (cell->action_list);
else
@@ -375,7 +375,7 @@ static G_CONST_RETURN gchar *
gal_a11y_e_cell_action_get_name (AtkAction *action,
gint index)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
ActionInfo *info = _gal_a11y_e_cell_get_action_info (cell, index);
if (info == NULL)
@@ -387,7 +387,7 @@ static G_CONST_RETURN gchar *
gal_a11y_e_cell_action_get_description (AtkAction *action,
gint index)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
ActionInfo *info = _gal_a11y_e_cell_get_action_info (cell, index);
if (info == NULL)
@@ -400,7 +400,7 @@ gal_a11y_e_cell_action_set_description (AtkAction *action,
gint index,
const gchar *desc)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
ActionInfo *info = _gal_a11y_e_cell_get_action_info (cell, index);
if (info == NULL)
@@ -414,7 +414,7 @@ static G_CONST_RETURN gchar *
gal_a11y_e_cell_action_get_keybinding (AtkAction *action,
gint index)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
ActionInfo *info = _gal_a11y_e_cell_get_action_info (cell, index);
if (info == NULL)
return NULL;
@@ -443,7 +443,7 @@ static gboolean
gal_a11y_e_cell_action_do_action (AtkAction *action,
gint index)
{
- GalA11yECell *cell = GAL_A11Y_E_CELL(action);
+ GalA11yECell *cell = GAL_A11Y_E_CELL (action);
ActionInfo *info = _gal_a11y_e_cell_get_action_info (cell, index);
if (!is_valid (ATK_OBJECT (action)))