summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTommi Komulainen <tommi.komulainen@iki.fi>2008-10-15 22:07:33 +0000
committerTommi Komulainen <tko@src.gnome.org>2008-10-15 22:07:33 +0000
commita616af101d2f60aa45d9ac98654db5a6e9dac9b5 (patch)
treeba94932c50bfc34b109f827666a5e138682375ec /tools
parentbdc8f915644293e9339f7efd5e00e714b5a33d65 (diff)
downloadgobject-introspection-a616af101d2f60aa45d9ac98654db5a6e9dac9b5.tar.gz
remove unused indent parameters, xmlwriter keeps track of necessary
2008-10-15 Tommi Komulainen <tommi.komulainen@iki.fi> * tools/generate.c (write_field_info, write_callable_info, write_function_info, write_callback_info, write_struct_info, write_constant_value, write_signal_info, write_vfunc_info, write_object_info, write_interface_info, write_union_info, write_repository): remove unused indent parameters, xmlwriter keeps track of necessary indentation svn path=/trunk/; revision=714
Diffstat (limited to 'tools')
-rw-r--r--tools/generate.c38
1 files changed, 17 insertions, 21 deletions
diff --git a/tools/generate.c b/tools/generate.c
index a31a164b..e280dedd 100644
--- a/tools/generate.c
+++ b/tools/generate.c
@@ -350,8 +350,7 @@ write_field_info (const gchar *namespace,
static void
write_callable_info (const gchar *namespace,
GICallableInfo *info,
- Xml *file,
- gint indent)
+ Xml *file)
{
GITypeInfo *type;
gint i;
@@ -468,8 +467,7 @@ write_callable_info (const gchar *namespace,
static void
write_function_info (const gchar *namespace,
GIFunctionInfo *info,
- Xml *file,
- gint indent)
+ Xml *file)
{
GIFunctionInfoFlags flags;
const gchar *tag;
@@ -501,15 +499,14 @@ write_function_info (const gchar *namespace,
if (deprecated)
xml_printf (file, " deprecated=\"1\"");
- write_callable_info (namespace, (GICallableInfo*)info, file, indent);
+ write_callable_info (namespace, (GICallableInfo*)info, file);
xml_end_element (file, tag);
}
static void
write_callback_info (const gchar *namespace,
GICallbackInfo *info,
- Xml *file,
- gint indent)
+ Xml *file)
{
const gchar *name;
gboolean deprecated;
@@ -523,7 +520,7 @@ write_callback_info (const gchar *namespace,
if (deprecated)
xml_printf (file, " deprecated=\"1\"");
- write_callable_info (namespace, (GICallableInfo*)info, file, indent);
+ write_callable_info (namespace, (GICallableInfo*)info, file);
xml_end_element (file, "callback");
}
@@ -575,7 +572,7 @@ write_struct_info (const gchar *namespace,
for (i = 0; i < g_struct_info_get_n_methods (info); i++)
{
GIFunctionInfo *function = g_struct_info_get_method (info, i);
- write_function_info (namespace, function, file, 6);
+ write_function_info (namespace, function, file);
g_base_info_unref ((GIBaseInfo *)function);
}
@@ -677,8 +674,7 @@ write_constant_value (const gchar *namespace,
static void
write_constant_info (const gchar *namespace,
GIConstantInfo *info,
- Xml *file,
- gint indent)
+ Xml *file)
{
GITypeInfo *type;
const gchar *name;
@@ -790,7 +786,7 @@ write_signal_info (const gchar *namespace,
if (flags & G_SIGNAL_NO_HOOKS)
xml_printf (file, " no-hooks=\"1\"");
- write_callable_info (namespace, (GICallableInfo*)info, file, 6);
+ write_callable_info (namespace, (GICallableInfo*)info, file);
xml_end_element (file, "glib:signal");
}
@@ -826,7 +822,7 @@ write_vfunc_info (const gchar *namespace,
xml_printf (file, " offset=\"%d\"", offset);
- write_callable_info (namespace, (GICallableInfo*)info, file, 6);
+ write_callable_info (namespace, (GICallableInfo*)info, file);
xml_end_element (file, "vfunc");
}
@@ -941,7 +937,7 @@ write_object_info (const gchar *namespace,
for (i = 0; i < g_object_info_get_n_methods (info); i++)
{
GIFunctionInfo *function = g_object_info_get_method (info, i);
- write_function_info (namespace, function, file, 6);
+ write_function_info (namespace, function, file);
g_base_info_unref ((GIBaseInfo *)function);
}
@@ -969,7 +965,7 @@ write_object_info (const gchar *namespace,
for (i = 0; i < g_object_info_get_n_constants (info); i++)
{
GIConstantInfo *constant = g_object_info_get_constant (info, i);
- write_constant_info (namespace, constant, file, 6);
+ write_constant_info (namespace, constant, file);
g_base_info_unref ((GIBaseInfo *)constant);
}
@@ -1022,7 +1018,7 @@ write_interface_info (const gchar *namespace,
for (i = 0; i < g_interface_info_get_n_methods (info); i++)
{
GIFunctionInfo *function = g_interface_info_get_method (info, i);
- write_function_info (namespace, function, file, 6);
+ write_function_info (namespace, function, file);
g_base_info_unref ((GIBaseInfo *)function);
}
@@ -1050,7 +1046,7 @@ write_interface_info (const gchar *namespace,
for (i = 0; i < g_interface_info_get_n_constants (info); i++)
{
GIConstantInfo *constant = g_interface_info_get_constant (info, i);
- write_constant_info (namespace, constant, file, 6);
+ write_constant_info (namespace, constant, file);
g_base_info_unref ((GIBaseInfo *)constant);
}
@@ -1131,7 +1127,7 @@ write_union_info (const gchar *namespace,
for (i = 0; i < g_union_info_get_n_methods (info); i++)
{
GIFunctionInfo *function = g_union_info_get_method (info, i);
- write_function_info (namespace, function, file, 6);
+ write_function_info (namespace, function, file);
g_base_info_unref ((GIBaseInfo *)function);
}
@@ -1216,11 +1212,11 @@ write_repository (const char *namespace,
switch (g_base_info_get_type (info))
{
case GI_INFO_TYPE_FUNCTION:
- write_function_info (ns, (GIFunctionInfo *)info, xml, 4);
+ write_function_info (ns, (GIFunctionInfo *)info, xml);
break;
case GI_INFO_TYPE_CALLBACK:
- write_callback_info (ns, (GICallbackInfo *)info, xml, 4);
+ write_callback_info (ns, (GICallbackInfo *)info, xml);
break;
case GI_INFO_TYPE_STRUCT:
@@ -1238,7 +1234,7 @@ write_repository (const char *namespace,
break;
case GI_INFO_TYPE_CONSTANT:
- write_constant_info (ns, (GIConstantInfo *)info, xml, 4);
+ write_constant_info (ns, (GIConstantInfo *)info, xml);
break;
case GI_INFO_TYPE_OBJECT: