diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2014-06-27 23:10:17 +0100 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2014-06-27 23:15:59 +0100 |
commit | 6750997659149e26a73718266f2022903992bb95 (patch) | |
tree | 4c22bdb3fdf6344b857fd34cbd230d25b887545d /tests/gsignal.head.c | |
parent | d395a38afc6410bc9d60f501745300305e137b37 (diff) |
gsignal: Add support for signals defined on interfaces
Previously the checker would not find the information about a signal
which was defined on an interface implemented by the dynamic instance
object (or one of its superclasses).
Diffstat (limited to 'tests/gsignal.head.c')
-rw-r--r-- | tests/gsignal.head.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/gsignal.head.c b/tests/gsignal.head.c index ec6e6d0..c6b70ef 100644 --- a/tests/gsignal.head.c +++ b/tests/gsignal.head.c @@ -119,6 +119,21 @@ application_activate_swapped_excess_arguments_cb (GSettings *self, /* Done */ } +static void +dbus_object_interface_added_cb (GDBusObject *obj, GDBusInterface *iface, + gpointer user_data) +{ + /* Done */ +} + +static void +dbus_object_proxy_interface_added_cb (GDBusObjectProxy *obj, + GDBusInterface *iface, + gpointer user_data) +{ + /* Done */ +} + int main (void) { |