small fixes

This commit is contained in:
jriegel
2013-09-22 22:44:11 +02:00
parent 0738ced074
commit 29c3fa6458
3 changed files with 3 additions and 3 deletions

View File

@@ -558,7 +558,7 @@ PyObject *PropertyLinkSubList::getPyObject(void)
#else
Py::List sequence(count);
#endif
for(int i = 0;i<count; i++){
for(unsigned int i = 0;i<count; i++){
Py::Tuple tup(2);
tup[0] = Py::Object(_lValueList[i]->getPyObject());
std::string subItem;