summaryrefslogtreecommitdiff
path: root/pango/pango-utils.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-01-16 20:20:35 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-01-16 20:20:35 +0000
commita0225fbf560de93c7b41acf9dbf01c9d99173af9 (patch)
treebb8f58010c8801a27545728393253b6c4722c6c4 /pango/pango-utils.c
parent0ee36da9691c2311d2134fd61f222ea3bed5827e (diff)
downloadpango-a0225fbf560de93c7b41acf9dbf01c9d99173af9.tar.gz
*.c, *.h: Replace preceding sequences of 8 spaces with tabs.
2007-01-16 Behdad Esfahbod <behdad@gnome.org> *.c, *.h: Replace preceding sequences of 8 spaces with tabs. svn path=/trunk/; revision=2165
Diffstat (limited to 'pango/pango-utils.c')
-rw-r--r--pango/pango-utils.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c
index 02444755..46c18e52 100644
--- a/pango/pango-utils.c
+++ b/pango/pango-utils.c
@@ -133,8 +133,8 @@ pango_version_string (void)
**/
const gchar*
pango_version_check (int required_major,
- int required_minor,
- int required_micro)
+ int required_minor,
+ int required_micro)
{
gint pango_effective_micro = 100 * PANGO_VERSION_MINOR + PANGO_VERSION_MICRO;
gint required_effective_micro = 100 * required_minor + required_micro;
@@ -763,13 +763,13 @@ pango_parse_enum (GType type,
if (v)
{
if (G_LIKELY (value))
- *value = v->value;
+ *value = v->value;
}
else
{
ret = FALSE;
if (warn || possible_values)
- {
+ {
int i;
GString *s = g_string_new (NULL);
@@ -777,7 +777,7 @@ pango_parse_enum (GType type,
i++ , v = g_enum_get_value (class, i))
{
if (i)
- g_string_append_c (s, '/');
+ g_string_append_c (s, '/');
g_string_append (s, v->value_nick);
}
@@ -1149,8 +1149,8 @@ pango_language_get_type (void)
if (our_type == 0)
our_type = g_boxed_type_register_static (I_("PangoLanguage"),
- (GBoxedCopyFunc)pango_language_copy,
- (GBoxedFreeFunc)pango_language_free);
+ (GBoxedCopyFunc)pango_language_copy,
+ (GBoxedFreeFunc)pango_language_free);
return our_type;
}