Standardize on Py::Long type for Python bindings.
This commit is contained in:
committed by
Adrián Insaurralde Avalos
parent
5391e21d4e
commit
010d37deda
@@ -776,8 +776,8 @@ int DocumentObjectPy::setCustomAttributes(const char* , PyObject *)
|
||||
return 0;
|
||||
}
|
||||
|
||||
Py::Int DocumentObjectPy::getID() const {
|
||||
return Py::Int(getDocumentObjectPtr()->getID());
|
||||
Py::Long DocumentObjectPy::getID() const {
|
||||
return Py::Long(getDocumentObjectPtr()->getID());
|
||||
}
|
||||
|
||||
Py::Boolean DocumentObjectPy::getRemoving() const {
|
||||
|
||||
Reference in New Issue
Block a user