App/Toponaming: Minor refactoring and tests for StringID

This commit is contained in:
Chris Hennes
2023-04-03 16:54:09 -05:00
committed by Chris Hennes
parent 2e5f43e69b
commit c9f73bda9e
6 changed files with 592 additions and 29 deletions

View File

@@ -102,7 +102,7 @@ PyObject* StringID::getPyObject()
PyObject* StringID::getPyObjectWithIndex(int index)
{
auto* res = new StringIDPy(this);
auto res = new StringIDPy(this);
res->_index = index;
return res;
}