summaryrefslogtreecommitdiff
path: root/gabble
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2010-06-08 14:45:42 -0300
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2010-06-08 14:45:42 -0300
commit6a96b2fc4d97110412d1a18c6cc7da4560bf6b64 (patch)
treefb592779f94d3ba44514775a47e26caa5fc18a4d /gabble
parent6662b92acbdf1daf7eaf5d6a49ac4d2a6f8b7cac (diff)
plugin API: Use const qualifier for read-only params in gabble_connection_update_sidecar_capabilities.
Diffstat (limited to 'gabble')
-rw-r--r--gabble/connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gabble/connection.h b/gabble/connection.h
index 637f23513..99fb7597a 100644
--- a/gabble/connection.h
+++ b/gabble/connection.h
@@ -48,8 +48,8 @@ GType gabble_connection_get_type (void);
void gabble_connection_update_sidecar_capabilities (
GabbleConnection *connection,
- GabbleCapabilitySet *add_set,
- GabbleCapabilitySet *remove_set);
+ const GabbleCapabilitySet *add_set,
+ const GabbleCapabilitySet *remove_set);
gchar *gabble_connection_add_sidecar_own_caps (
GabbleConnection *connection,
const GabbleCapabilitySet *cap_set,