Merge branch 'main' into feat/editing-context-system
All checks were successful
Build and Test / build (pull_request) Successful in 35m30s

This commit is contained in:
2026-02-12 16:10:54 +00:00
11 changed files with 783 additions and 219 deletions

View File

@@ -2271,7 +2271,7 @@ PyObject* ApplicationPy::sRegisterEditingContext(PyObject* /*self*/, PyObject* a
}
catch (Py::Exception&) {
Base::PyException e;
e.ReportException();
e.reportException();
return false;
}
};
@@ -2322,7 +2322,7 @@ PyObject* ApplicationPy::sRegisterEditingOverlay(PyObject* /*self*/, PyObject* a
}
catch (Py::Exception&) {
Base::PyException e;
e.ReportException();
e.reportException();
return false;
}
};

View File

@@ -29,6 +29,7 @@
#include <Base/BaseClass.h>
#include <Base/Parameter.h>
#include <Gui/TaskView/TaskWatcher.h>
#include <Gui/ToolBarManager.h>
namespace Base
{
@@ -39,7 +40,6 @@ namespace Gui
{
class MenuItem;
class ToolBarItem;
class DockWindowItems;
class WorkbenchManager;