aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/outputwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/coreplugin/outputwindow.cpp')
-rw-r--r--src/plugins/coreplugin/outputwindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/coreplugin/outputwindow.cpp b/src/plugins/coreplugin/outputwindow.cpp
index 2d69b09e54a..690f10d5062 100644
--- a/src/plugins/coreplugin/outputwindow.cpp
+++ b/src/plugins/coreplugin/outputwindow.cpp
@@ -87,12 +87,12 @@ OutputWindow::OutputWindow(Context context, QWidget *parent)
d->outputWindowContext->setWidget(this);
ICore::addContextObject(d->outputWindowContext);
- QAction *undoAction = new QAction(this);
- QAction *redoAction = new QAction(this);
- QAction *cutAction = new QAction(this);
- QAction *copyAction = new QAction(this);
- QAction *pasteAction = new QAction(this);
- QAction *selectAllAction = new QAction(this);
+ auto undoAction = new QAction(this);
+ auto redoAction = new QAction(this);
+ auto cutAction = new QAction(this);
+ auto copyAction = new QAction(this);
+ auto pasteAction = new QAction(this);
+ auto selectAllAction = new QAction(this);
ActionManager::registerAction(undoAction, Constants::UNDO, context);
ActionManager::registerAction(redoAction, Constants::REDO, context);