summaryrefslogtreecommitdiff
path: root/gdbus/gdbus.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-03-07 14:32:48 -0800
committerMarcel Holtmann <marcel@holtmann.org>2010-03-07 14:32:48 -0800
commit591ffe09599e7c2fc91935707c4bbc279045ad77 (patch)
tree0a449d4be05a4ca9e9596e94290946b353100d95 /gdbus/gdbus.h
parent4205e57f83752f664bef00aed484eb701c07d702 (diff)
downloadobexd-591ffe09599e7c2fc91935707c4bbc279045ad77.tar.gz
Make interface callback tables const
Diffstat (limited to 'gdbus/gdbus.h')
-rw-r--r--gdbus/gdbus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdbus/gdbus.h b/gdbus/gdbus.h
index 77b8aee..47e18cf 100644
--- a/gdbus/gdbus.h
+++ b/gdbus/gdbus.h
@@ -91,9 +91,9 @@ typedef struct {
gboolean g_dbus_register_interface(DBusConnection *connection,
const char *path, const char *name,
- GDBusMethodTable *methods,
- GDBusSignalTable *signals,
- GDBusPropertyTable *properties,
+ const GDBusMethodTable *methods,
+ const GDBusSignalTable *signals,
+ const GDBusPropertyTable *properties,
void *user_data,
GDBusDestroyFunction destroy);
gboolean g_dbus_unregister_interface(DBusConnection *connection,