summaryrefslogtreecommitdiffstats
path: root/glib/dbus-gidl.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-08-30 02:56:12 +0000
committerHavoc Pennington <hp@redhat.com>2003-08-30 02:56:12 +0000
commitce969c6347b69180088c592e9184f05d0d3525c4 (patch)
treeb9496b9d1f9bb3db5eb76981b6b0017fc244509d /glib/dbus-gidl.c
parent85282c340b8fcd67c10bcf348b1c5d581f7dbd53 (diff)
2003-08-29 Havoc Pennington <hp@pobox.com>
* dbus/dbus-object-tree.c: modify to allow overlapping paths to be registered (struct DBusObjectSubtree): shrink this a lot, since we may have a lot of them (_dbus_object_tree_free_all_unlocked): implement (_dbus_object_tree_dispatch_and_unlock): implement
Diffstat (limited to 'glib/dbus-gidl.c')
-rw-r--r--glib/dbus-gidl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/glib/dbus-gidl.c b/glib/dbus-gidl.c
index b6e0fb8c..c1a1f6dc 100644
--- a/glib/dbus-gidl.c
+++ b/glib/dbus-gidl.c
@@ -37,7 +37,6 @@ struct MethodInfo
int refcount;
GSList *args;
char *name;
- MethodStyle style;
};
struct SignalInfo
@@ -157,15 +156,13 @@ free_arg_list (GSList **args_p)
}
MethodInfo*
-method_info_new (const char *name,
- MethodStyle style)
+method_info_new (const char *name)
{
MethodInfo *info;
info = g_new0 (MethodInfo, 1);
info->refcount = 1;
info->name = g_strdup (name);
- info->style = style;
return info;
}