correct more indentations / whitespace

This commit is contained in:
plc-user
2024-04-24 14:14:40 +02:00
parent 17030aaa80
commit fa68d545d0
46 changed files with 903 additions and 903 deletions

View File

@@ -23,8 +23,8 @@
#include <QKeyEvent>
DiagramEventInterface::DiagramEventInterface(Diagram *diagram) :
QObject{diagram},
m_diagram{diagram}
QObject{diagram},
m_diagram{diagram}
{
m_diagram -> clearSelection();
}

View File

@@ -64,9 +64,9 @@ class DiagramEventInterface : public QObject
void finish(); //Emitted when the interface finishes its job.
protected:
QPointer<Diagram> m_diagram;
bool m_running{false};
bool m_abort{false};
QPointer<Diagram> m_diagram;
bool m_running{false};
bool m_abort{false};
};
#endif // DIAGRAMEVENTINTERFACE_H