aboutsummaryrefslogtreecommitdiffstats
path: root/a11y
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-29 01:06:29 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-29 01:21:01 +0800
commit14f8eee012382f04090ea9277e9567d5f32e8bf0 (patch)
treed1c454675e816f8d948942c21c5d899a969b08a7 /a11y
parente66024d664a1d346d6246b4e8b7c682bafcf4dda (diff)
downloadgsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.gz
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.bz2
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.lz
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.xz
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.zst
gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.zip
Whitespace cleanup.
Diffstat (limited to 'a11y')
-rw-r--r--a11y/ea-factory.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/a11y/ea-factory.h b/a11y/ea-factory.h
index 2331f54a0b..e234368a98 100644
--- a/a11y/ea-factory.h
+++ b/a11y/ea-factory.h
@@ -36,11 +36,11 @@ type_as_function ## _factory_create_accessible (GObject *obj) \
{ \
AtkObject *accessible; \
g_return_val_if_fail (G_IS_OBJECT (obj), NULL); \
- accessible = opt_create_accessible (G_OBJECT (obj)); \
- return accessible; \
+ accessible = opt_create_accessible (G_OBJECT (obj)); \
+ return accessible; \
}
-#define EA_FACTORY_PARTA(type, type_as_function, opt_create_accessible) \
+#define EA_FACTORY_PARTA(type, type_as_function, opt_create_accessible) \
static AtkObject* \
type_as_function ## _factory_create_accessible (GObject *obj) \
{ \
@@ -52,10 +52,10 @@ type_as_function ## _factory_create_accessible (GObject *obj) \
widget = GTK_WIDGET (obj); \
\
accessible = opt_create_accessible (widget); \
- return accessible; \
+ return accessible; \
}
-#define EA_FACTORY_PARTB(type, type_as_function, opt_create_accessible) \
+#define EA_FACTORY_PARTB(type, type_as_function, opt_create_accessible) \
\
static GType \
type_as_function ## _factory_get_accessible_type (void) \
@@ -81,7 +81,7 @@ type_as_function ## _factory_get_type (void) \
gchar *name; \
static const GTypeInfo tinfo = \
{ \
- sizeof (AtkObjectFactoryClass), \
+ sizeof (AtkObjectFactoryClass), \
NULL, NULL, (GClassInitFunc) type_as_function ## _factory_class_init, \
NULL, NULL, sizeof (AtkObjectFactory), 0, NULL, NULL \
}; \
@@ -95,15 +95,15 @@ type_as_function ## _factory_get_type (void) \
return t; \
}
-#define EA_FACTORY(type, type_as_function, opt_create_accessible) \
- EA_FACTORY_PARTA(type, type_as_function, opt_create_accessible) \
+#define EA_FACTORY(type, type_as_function, opt_create_accessible) \
+ EA_FACTORY_PARTA(type, type_as_function, opt_create_accessible) \
EA_FACTORY_PARTB(type, type_as_function, opt_create_accessible)
#define EA_FACTORY_GOBJECT(type, type_as_function, opt_create_accessible) \
EA_FACTORY_PARTA_GOBJECT(type, type_as_function, opt_create_accessible) \
EA_FACTORY_PARTB(type, type_as_function, opt_create_accessible)
-#define EA_SET_FACTORY(obj_type, type_as_function) \
+#define EA_SET_FACTORY(obj_type, type_as_function) \
{ \
if (atk_get_root ()) { \
atk_registry_set_factory_type (atk_get_default_registry (), \