aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/typesystem_sample.xml
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-01-14 16:02:31 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-01-14 16:40:55 -0200
commit8657f7eff10c27bf450bb742e377144d2a08019f (patch)
tree4cbf834b1199aa76f5d31f67a8a7031658b1b18b /tests/samplebinding/typesystem_sample.xml
parent370a3b6cf2a57bf63c1d4041a0de5085485b37fe (diff)
Changed prefix of local generated C functions to avoid name clash with bindinded method names.
Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests/samplebinding/typesystem_sample.xml')
-rw-r--r--tests/samplebinding/typesystem_sample.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/typesystem_sample.xml b/tests/samplebinding/typesystem_sample.xml
index dfb96d8c0..f99f76e2a 100644
--- a/tests/samplebinding/typesystem_sample.xml
+++ b/tests/samplebinding/typesystem_sample.xml
@@ -763,7 +763,7 @@
<add-function signature="__setitem__" >
<inject-code class="target" position="beginning">
PyObject* args = Py_BuildValue("(iO)", _i, _value);
- PyObject* result = SbkStr_set_char(self, args);
+ PyObject* result = SbkStrFunc_set_char(self, args);
Py_DECREF(args);
int ok = result == Py_True;
if (result) {