aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/modeleditor/actionhandler.cpp
diff options
context:
space:
mode:
authorJochen Becher <jochen_becher@gmx.de>2017-07-30 22:12:58 +0200
committerJochen Becher <jochen_becher@gmx.de>2017-08-07 17:04:10 +0000
commit40acf8c19151c04739e853ed137db3880d23ea7a (patch)
tree7dee5216a5fb36199d56b9c955a9dec93d886235 /src/plugins/modeleditor/actionhandler.cpp
parent16b2b162380b18fbd4f974068f28fa05354af394 (diff)
ModelEditor: Replace 0 with nullptr in plugin
Change-Id: I38b34213790dd165637d0d5096a4640eb43e8e0c Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/plugins/modeleditor/actionhandler.cpp')
-rw-r--r--src/plugins/modeleditor/actionhandler.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/plugins/modeleditor/actionhandler.cpp b/src/plugins/modeleditor/actionhandler.cpp
index ecb852a247..016a0ad027 100644
--- a/src/plugins/modeleditor/actionhandler.cpp
+++ b/src/plugins/modeleditor/actionhandler.cpp
@@ -46,20 +46,20 @@ namespace Internal {
class ActionHandler::ActionHandlerPrivate {
public:
Core::Context context;
- QAction *undoAction = 0;
- QAction *redoAction = 0;
- QAction *cutAction = 0;
- QAction *copyAction = 0;
- QAction *pasteAction = 0;
- QAction *removeAction = 0;
- QAction *deleteAction = 0;
- QAction *selectAllAction = 0;
- QAction *openParentDiagramAction = 0;
- QAction *synchronizeBrowserAction = 0;
- QAction *exportDiagramAction = 0;
- QAction *zoomInAction = 0;
- QAction *zoomOutAction = 0;
- QAction *resetZoomAction = 0;
+ QAction *undoAction = nullptr;
+ QAction *redoAction = nullptr;
+ QAction *cutAction = nullptr;
+ QAction *copyAction = nullptr;
+ QAction *pasteAction = nullptr;
+ QAction *removeAction = nullptr;
+ QAction *deleteAction = nullptr;
+ QAction *selectAllAction = nullptr;
+ QAction *openParentDiagramAction = nullptr;
+ QAction *synchronizeBrowserAction = nullptr;
+ QAction *exportDiagramAction = nullptr;
+ QAction *zoomInAction = nullptr;
+ QAction *zoomOutAction = nullptr;
+ QAction *resetZoomAction = nullptr;
};
ActionHandler::ActionHandler(const Core::Context &context, QObject *parent)