Gui: Rename View3DInventorPy::getView3DIventorPtr() due to typo.

This commit is contained in:
tritao
2025-01-08 22:25:33 +00:00
committed by Chris Hennes
parent 28dcc54f0b
commit f75263cd19
3 changed files with 93 additions and 93 deletions

View File

@@ -560,7 +560,7 @@ PyObject *ViewProviderPy::getBoundingBox(PyObject *args) {
PY_TRY {
View3DInventor *view = nullptr;
if(pyView)
view = static_cast<View3DInventorPy*>(pyView)->getView3DIventorPtr();
view = static_cast<View3DInventorPy*>(pyView)->getView3DInventorPtr();
auto bbox = getViewProviderPtr()->getBoundingBox(subname, Base::asBoolean(transform), view);
return new Base::BoundBoxPy(new Base::BoundBox3d(bbox));
}