GDBus: Avoid using the word interface in public C headers

Same deal as with e.g. index since some libraries may do crazy stuff
such as "#define interface xyz".

Signed-off-by: David Zeuthen <davidz@redhat.com>
This commit is contained in:
David Zeuthen
2011-04-11 15:13:25 -04:00
parent 4dffec8906
commit 4809028736
4 changed files with 12 additions and 12 deletions

View File

@@ -71,10 +71,10 @@ struct _GDBusObjectManagerIface
void (*interface_added) (GDBusObjectManager *manager,
GDBusObject *object,
GDBusInterface *interface);
GDBusInterface *interface_);
void (*interface_removed) (GDBusObjectManager *manager,
GDBusObject *object,
GDBusInterface *interface);
GDBusInterface *interface_);
};
GType g_dbus_object_manager_get_type (void) G_GNUC_CONST;