[girepository] Remove trailing whitespace

This commit is contained in:
Johan Dahlin
2010-03-24 15:00:06 -03:00
parent a837d99ee6
commit 6b0463dd16
16 changed files with 971 additions and 971 deletions

View File

@@ -158,7 +158,7 @@ dump_object_type (GType type, const char *symbol, GOutputStream *out)
GString *parent_str;
GType parent;
gboolean first = TRUE;
parent = type;
parent_str = g_string_new ("");
do
@@ -170,9 +170,9 @@ dump_object_type (GType type, const char *symbol, GOutputStream *out)
g_string_append_c (parent_str, ',');
g_string_append (parent_str, g_type_name (parent));
} while (parent != G_TYPE_OBJECT && parent != G_TYPE_INVALID);
escaped_printf (out, " parents=\"%s\"", parent_str->str);
g_string_free (parent_str, TRUE);
}