summaryrefslogtreecommitdiff
path: root/girepository
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-03-24 15:20:14 -0300
committerJohan Dahlin <johan@gnome.org>2010-03-25 09:23:12 -0300
commit5583d7ec3b1bf52830505acda09c9ca8fbd07ef1 (patch)
treed4f7825422adb728a901e1efe0af1d72c4655a6b /girepository
parent1acef442a0fd44d5a1aedab3e78bac409c4fb322 (diff)
downloadgobject-introspection-5583d7ec3b1bf52830505acda09c9ca8fbd07ef1.tar.gz
[typelib] Remove space/indent mismatch
Diffstat (limited to 'girepository')
-rw-r--r--girepository/ginfo.c10
-rw-r--r--girepository/girnode.c14
-rw-r--r--girepository/gtypelib.h10
3 files changed, 17 insertions, 17 deletions
diff --git a/girepository/ginfo.c b/girepository/ginfo.c
index 2d777e3e..e3936179 100644
--- a/girepository/ginfo.c
+++ b/girepository/ginfo.c
@@ -619,8 +619,8 @@ signature_offset (GICallableInfo *info)
GITypeInfo *
g_type_info_new (GIBaseInfo *container,
- GTypelib *typelib,
- guint32 offset)
+ GTypelib *typelib,
+ guint32 offset)
{
SimpleTypeBlob *type = (SimpleTypeBlob *)&typelib->data[offset];
@@ -758,7 +758,7 @@ g_callable_info_get_n_args (GICallableInfo *info)
*/
GIArgInfo *
g_callable_info_get_arg (GICallableInfo *info,
- gint n)
+ gint n)
{
GIRealInfo *rinfo = (GIRealInfo *)info;
Header *header = (Header *)rinfo->typelib->data;
@@ -767,7 +767,7 @@ g_callable_info_get_arg (GICallableInfo *info,
offset = signature_offset (info);
return (GIArgInfo *) g_info_new (GI_INFO_TYPE_ARG, (GIBaseInfo*)info, rinfo->typelib,
- offset + header->signature_blob_size + n * header->arg_blob_size);
+ offset + header->signature_blob_size + n * header->arg_blob_size);
}
/**
@@ -1351,7 +1351,7 @@ find_method (GIBaseInfo *base,
if (strcmp (name, fname) == 0)
return (GIFunctionInfo *) g_info_new (GI_INFO_TYPE_FUNCTION, base,
- rinfo->typelib, offset);
+ rinfo->typelib, offset);
offset += header->function_blob_size;
}
diff --git a/girepository/girnode.c b/girepository/girnode.c
index afe39131..456ab738 100644
--- a/girepository/girnode.c
+++ b/girepository/girnode.c
@@ -1644,9 +1644,9 @@ g_ir_node_build_typelib (GIrNode *node,
blob->name = write_string (node->name, strings, data, offset2);
blob->deprecated = prop->deprecated;
blob->readable = prop->readable;
- blob->writable = prop->writable;
- blob->construct = prop->construct;
- blob->construct_only = prop->construct_only;
+ blob->writable = prop->writable;
+ blob->construct = prop->construct;
+ blob->construct_only = prop->construct_only;
blob->reserved = 0;
g_ir_node_build_typelib ((GIrNode *)prop->type,
@@ -1860,10 +1860,10 @@ g_ir_node_build_typelib (GIrNode *node,
*/
*offset += sizeof (ArgBlob) - sizeof (SimpleTypeBlob);
- blob->name = write_string (node->name, strings, data, offset2);
- blob->in = param->in;
- blob->out = param->out;
- blob->dipper = param->dipper;
+ blob->name = write_string (node->name, strings, data, offset2);
+ blob->in = param->in;
+ blob->out = param->out;
+ blob->dipper = param->dipper;
blob->allow_none = param->allow_none;
blob->optional = param->optional;
blob->transfer_ownership = param->transfer;
diff --git a/girepository/gtypelib.h b/girepository/gtypelib.h
index 99d4472c..a69bccf0 100644
--- a/girepository/gtypelib.h
+++ b/girepository/gtypelib.h
@@ -556,12 +556,12 @@ typedef struct {
*
*/
typedef struct {
- guint8 pointer :1;
- guint8 reserved :2;
- guint8 tag :5;
+ guint8 pointer :1;
+ guint8 reserved :2;
+ guint8 tag :5;
- guint8 reserved2;
- guint16 n_types;
+ guint8 reserved2;
+ guint16 n_types;
SimpleTypeBlob type[];
} ParamTypeBlob;