rename method from remObject to removeObject to be more readable

This commit is contained in:
wmayer
2017-09-13 18:57:38 +02:00
parent e34a623aeb
commit 09737f2db3
12 changed files with 17 additions and 17 deletions

View File

@@ -279,7 +279,7 @@ PyObject* DocumentPy::removeObject(PyObject *args)
DocumentObject *pcFtr = getDocumentPtr()->getObject(sName);
if(pcFtr) {
getDocumentPtr()->remObject( sName );
getDocumentPtr()->removeObject( sName );
Py_Return;
} else {
std::stringstream str;