Gui: Use PyObject_IsTrue in combination with conditional ternary operator

This commit is contained in:
marioalexis
2022-05-17 12:41:58 -03:00
committed by Chris Hennes
parent 80492e81fa
commit ae56fb62a7
8 changed files with 35 additions and 34 deletions

View File

@@ -410,11 +410,11 @@ Py::Object View3DInventorViewerPy::setupEditingRoot(const Py::Tuple& args)
Py::Object View3DInventorViewerPy::resetEditingRoot(const Py::Tuple& args)
{
PyObject *updateLinks = Py_True;
if (!PyArg_ParseTuple(args.ptr(), "|O", &updateLinks)) {
if (!PyArg_ParseTuple(args.ptr(), "|O!", &PyBool_Type, &updateLinks)) {
throw Py::Exception();
}
try {
_viewer->resetEditingRoot(PyObject_IsTrue(updateLinks));
_viewer->resetEditingRoot(PyObject_IsTrue(updateLinks) ? true : false);
return Py::None();
}
catch (const Base::Exception& e) {
@@ -473,7 +473,7 @@ Py::Object View3DInventorViewerPy::setEnabledNaviCube(const Py::Tuple& args)
PyObject* m=Py_False;
if (!PyArg_ParseTuple(args.ptr(), "O!", &PyBool_Type, &m))
throw Py::Exception();
_viewer->setEnabledNaviCube(PyObject_IsTrue(m));
_viewer->setEnabledNaviCube(PyObject_IsTrue(m) ? true : false);
return Py::None();
}