summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-03-28 16:06:04 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2008-03-28 16:06:04 +0000
commit8adb45fdb7a06d32c59c6aa06637cce3a6b148e2 (patch)
tree3ffe04c76843b58a34c4160dd9caf31e839bf25f
parentf4d3e6e877a67ad4580e8f5e01fa98e98117e458 (diff)
const gboolean as argument is useless and it disturbs the bindings
-rw-r--r--lasso/id-wsf-2.0/data_service.c2
-rw-r--r--lasso/id-wsf-2.0/data_service.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-wsf-2.0/data_service.c b/lasso/id-wsf-2.0/data_service.c
index dfab152f..1ebe1ddb 100644
--- a/lasso/id-wsf-2.0/data_service.c
+++ b/lasso/id-wsf-2.0/data_service.c
@@ -549,7 +549,7 @@ static void set_xml_string(xmlNode **xmlnode, const char* string)
gint
lasso_idwsf2_data_service_add_modify_item(LassoIdWsf2DataService *service, const gchar *item_xpath,
- const gchar *item_id, const gchar *new_data, const gboolean overrideAllowed)
+ const gchar *item_id, const gchar *new_data, gboolean overrideAllowed)
{
LassoIdWsf2Profile *profile = LASSO_IDWSF2_PROFILE(service);
LassoIdWsf2DstRefModify *modify;
diff --git a/lasso/id-wsf-2.0/data_service.h b/lasso/id-wsf-2.0/data_service.h
index 3fd941dd..5428f715 100644
--- a/lasso/id-wsf-2.0/data_service.h
+++ b/lasso/id-wsf-2.0/data_service.h
@@ -102,7 +102,7 @@ LASSO_EXPORT gint lasso_idwsf2_data_service_init_modify(LassoIdWsf2DataService *
LASSO_EXPORT gint lasso_idwsf2_data_service_add_modify_item(
LassoIdWsf2DataService *service, const gchar *item_xpath, const gchar *item_id,
- const gchar *new_data, const gboolean overrideAllowed);
+ const gchar *new_data, gboolean overrideAllowed);
LASSO_EXPORT gint lasso_idwsf2_data_service_process_modify_msg(LassoIdWsf2DataService *service,
const gchar *message);