App: improve whitespaces

This commit is contained in:
wmayer
2022-08-01 01:29:47 +02:00
parent 7c6b6a3942
commit 632e167ed8
8 changed files with 21 additions and 20 deletions

View File

@@ -274,10 +274,10 @@ void PropertyVectorList::setValue(double x, double y, double z)
PyObject *PropertyVectorList::getPyObject()
{
PyObject* list = PyList_New( getSize() );
PyObject* list = PyList_New(getSize());
for (int i = 0;i<getSize(); i++)
PyList_SetItem( list, i, new VectorPy( _lValueList[i]));
for (int i = 0;i < getSize(); i++)
PyList_SetItem(list, i, new VectorPy(_lValueList[i]));
return list;
}