aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMarja Hassinen <ext-marja.2.hassinen@nokia.com>2009-02-09 16:09:51 +0200
committerMarja Hassinen <ext-marja.2.hassinen@nokia.com>2009-02-09 16:09:51 +0200
commit4ca6173b5821a7e473e7936bda46e7d814f56e74 (patch)
tree212ccfc0083622aadf8b73255c0f087abb8dc866 /python
parentaa7923e0521bbf4ac56e8b59587df74793e07d6c (diff)
Updating the python bindings and tests because of plain c api changes.
Diffstat (limited to 'python')
-rw-r--r--python/ContextProvider.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/ContextProvider.py b/python/ContextProvider.py
index 0e0305a8..5fdd3af1 100644
--- a/python/ContextProvider.py
+++ b/python/ContextProvider.py
@@ -40,7 +40,7 @@ class ContextProvider:
('change_set', CHANGE_SET, 1))
change_set_cancel = cfunc('context_provider_change_set_cancel', _dll, None,
('change_set', CHANGE_SET, 1))
- change_set_add_int = cfunc('context_provider_change_set_add_int', _dll, c_int,
+ change_set_add_integer = cfunc('context_provider_change_set_add_integer', _dll, c_int,
('change_set', CHANGE_SET, 1),
('key', c_char_p, 1),
('val', c_int, 1))
@@ -48,7 +48,7 @@ class ContextProvider:
('change_set', CHANGE_SET, 1),
('key', c_char_p, 1),
('val', c_double, 1))
- change_set_add_bool = cfunc('context_provider_change_set_add_bool', _dll, c_int,
+ change_set_add_boolean = cfunc('context_provider_change_set_add_boolean', _dll, c_int,
('change_set', CHANGE_SET, 1),
('key', c_char_p, 1),
('val', c_int, 1))