All: Reformat according to new standard

This commit is contained in:
pre-commit-ci[bot]
2025-11-11 13:49:01 +01:00
committed by Kacper Donat
parent eafd18dac0
commit 25c3ba7338
2390 changed files with 154630 additions and 115818 deletions

View File

@@ -28,14 +28,15 @@
#include <Gui/WorkbenchManipulator.h>
#include <CXX/Objects.hxx>
namespace Gui {
namespace Gui
{
/**
* The WorkbenchManipulatorPython class accepts an instance of a Python class
* that is supposed to implement any of the virtual functions.
* @author Werner Mayer
*/
class GuiExport WorkbenchManipulatorPython : public WorkbenchManipulator
class GuiExport WorkbenchManipulatorPython: public WorkbenchManipulator
{
public:
static void installManipulator(const Py::Object& obj);
@@ -68,8 +69,8 @@ protected:
public:
WorkbenchManipulatorPython(const WorkbenchManipulatorPython&) = delete;
WorkbenchManipulatorPython(WorkbenchManipulatorPython&&) = delete;
WorkbenchManipulatorPython& operator = (const WorkbenchManipulatorPython&) = delete;
WorkbenchManipulatorPython& operator = (WorkbenchManipulatorPython&&) = delete;
WorkbenchManipulatorPython& operator=(const WorkbenchManipulatorPython&) = delete;
WorkbenchManipulatorPython& operator=(WorkbenchManipulatorPython&&) = delete;
private:
void tryModifyMenuBar(MenuItem* menuBar);
@@ -85,7 +86,7 @@ private:
Py::Object object;
};
} // namespace Gui
} // namespace Gui
#endif // GUI_WORKBENCHMANIPULATOR_PYTHON_H
#endif // GUI_WORKBENCHMANIPULATOR_PYTHON_H