diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 20:26:43 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 20:26:43 +0000 |
commit | 5d65122f8a714e04b05c52947cedaab090345d37 (patch) | |
tree | e807128ae4900c94205fa840c17bb55f4680a1aa /pango/pango-impl-utils.h | |
parent | a0225fbf560de93c7b41acf9dbf01c9d99173af9 (diff) | |
download | pango-5d65122f8a714e04b05c52947cedaab090345d37.tar.gz |
*.c, *.h: Removed spaces followed b tabs.
2007-01-16 Behdad Esfahbod <behdad@gnome.org>
*.c, *.h: Removed spaces followed b tabs.
svn path=/trunk/; revision=2166
Diffstat (limited to 'pango/pango-impl-utils.h')
-rw-r--r-- | pango/pango-impl-utils.h | 10 |
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; \ |