diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-11-19 17:56:10 -0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-11-23 13:37:10 -0200 |
commit | ea46607ca87ce2233529c8177ab51424337613d2 (patch) | |
tree | c26635ef06122ccc296a32fa3d9057636b65413c /tests/samplebinding/typesystem_sample.xml | |
parent | 36b1807b8c5fe75faf87a593ac0e1d7e9ac8b887 (diff) | |
download | shiboken-ea46607ca87ce2233529c8177ab51424337613d2.tar.gz shiboken-ea46607ca87ce2233529c8177ab51424337613d2.tar.xz shiboken-ea46607ca87ce2233529c8177ab51424337613d2.zip |
namespace Shiboken::BaseType renamed to Shiboken::ObjectType.
Diffstat (limited to 'tests/samplebinding/typesystem_sample.xml')
-rw-r--r-- | tests/samplebinding/typesystem_sample.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/samplebinding/typesystem_sample.xml b/tests/samplebinding/typesystem_sample.xml index 37fa4742..fb46eb2f 100644 --- a/tests/samplebinding/typesystem_sample.xml +++ b/tests/samplebinding/typesystem_sample.xml @@ -178,9 +178,9 @@ if ((*it)->isLayoutType()) { ObjectTypeLayout* l = reinterpret_cast<ObjectTypeLayout*>(*it); reparent_layout_items(parent, %CONVERTTOPYTHON[ObjectTypeLayout*](l)); - Wrapper::setParent(layout, %CONVERTTOPYTHON[ObjectTypeLayout*](l)); + Shiboken::Wrapper::setParent(layout, %CONVERTTOPYTHON[ObjectTypeLayout*](l)); } else { - Wrapper::setParent(parent, %CONVERTTOPYTHON[ObjectType*](*it)); + Shiboken::Wrapper::setParent(parent, %CONVERTTOPYTHON[ObjectType*](*it)); } } } @@ -709,8 +709,8 @@ <modify-argument index="return"> <replace-type modified-type="PySequence"/> <conversion-rule class="native"> - AutoDecRef _py_ok_(PySequence_GetItem(%PYARG_0, 0)); - AutoDecRef _py_ret_(PySequence_GetItem(%PYARG_0, 1)); + Shiboken::AutoDecRef _py_ok_(PySequence_GetItem(%PYARG_0, 0)); + Shiboken::AutoDecRef _py_ret_(PySequence_GetItem(%PYARG_0, 1)); %RETURN_TYPE %out = %CONVERTTOCPP[%RETURN_TYPE](_py_ok_); %2 = %CONVERTTOCPP[Str*](_py_ret_); </conversion-rule> @@ -914,7 +914,7 @@ <inject-code class="target" position="beginning"> int argc; char** argv; - if (!sequenceToArgcArgv(%PYARG_1, &argc, &argv)) { + if (!Shiboken::sequenceToArgcArgv(%PYARG_1, &argc, &argv)) { PyErr_SetString(PyExc_TypeError, "error"); return 0; } @@ -938,7 +938,7 @@ <inject-code class="target" position="beginning"> int argc; char** argv; - if (!sequenceToArgcArgv(%PYARG_1, &argc, &argv)) { + if (!Shiboken::sequenceToArgcArgv(%PYARG_1, &argc, &argv)) { PyErr_SetString(PyExc_TypeError, "error"); return 0; } |