summaryrefslogtreecommitdiff
path: root/pango/pango-impl-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-impl-utils.h')
-rw-r--r--pango/pango-impl-utils.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/pango/pango-impl-utils.h b/pango/pango-impl-utils.h
index ac6a8e5f..2f71dadf 100644
--- a/pango/pango-impl-utils.h
+++ b/pango/pango-impl-utils.h
@@ -31,11 +31,11 @@ G_BEGIN_DECLS
#define PANGO_DEFINE_TYPE_FULL(name, prefix, \
class_init, instance_init, \
parent_type, abstract) \
-GType \
+GType \
prefix ## _get_type (void) \
{ \
static GType object_type = 0; \
- \
+ \
if (!object_type) \
{ \
static const GTypeInfo object_info = \
@@ -51,10 +51,10 @@ prefix ## _get_type (void) \
(GInstanceInitFunc) instance_init, \
NULL /* value_table */ \
}; \
- \
- object_type = g_type_register_static (parent_type, \
+ \
+ object_type = g_type_register_static (parent_type, \
g_intern_static_string (# name), \
- &object_info, abstract); \
+ &object_info, abstract); \
} \
\
return object_type; \