aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/gal-a11y-e-table.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:24:42 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:37:20 +0800
commit8a186c3588d3598857c36e2122fa68d01eba30fd (patch)
tree731078659d4e04af8346c5ca68512d8537b3707a /widgets/table/gal-a11y-e-table.c
parent2bf3460cd3eb0853a1d10a6e36f5091898a5533f (diff)
downloadgsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.gz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.bz2
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.lz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.xz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.zst
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.zip
Coding style cleanups.
Diffstat (limited to 'widgets/table/gal-a11y-e-table.c')
-rw-r--r--widgets/table/gal-a11y-e-table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/table/gal-a11y-e-table.c b/widgets/table/gal-a11y-e-table.c
index c6ba4e7d2b..d04bda280e 100644
--- a/widgets/table/gal-a11y-e-table.c
+++ b/widgets/table/gal-a11y-e-table.c
@@ -91,7 +91,7 @@ init_child_item (GalA11yETable *a11y)
table = E_TABLE (gtk_accessible_get_widget (GTK_ACCESSIBLE (a11y)));
if (table && gtk_widget_get_mapped (GTK_WIDGET (table)) && table->group && E_IS_TABLE_GROUP_CONTAINER (table->group)) {
- ETableGroupContainer *etgc = (ETableGroupContainer *)table->group;
+ ETableGroupContainer *etgc = (ETableGroupContainer *) table->group;
GList *list;
for (list = etgc->children; list; list = g_list_next (list)) {
@@ -133,7 +133,7 @@ et_get_n_children (AtkObject *accessible)
if (E_IS_TABLE_GROUP_LEAF (et->group))
n = 1;
else if (E_IS_TABLE_GROUP_CONTAINER (et->group)) {
- ETableGroupContainer *etgc = (ETableGroupContainer *)et->group;
+ ETableGroupContainer *etgc = (ETableGroupContainer *) et->group;
n = g_list_length (etgc->children);
}
}
@@ -291,7 +291,7 @@ gal_a11y_e_table_new (GObject *widget)
g_object_ref (a11y);
g_object_ref (widget);
- g_idle_add ((GSourceFunc)init_child_item, a11y);
+ g_idle_add ((GSourceFunc) init_child_item, a11y);
}
return ATK_OBJECT (a11y);