summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-02-26 16:50:39 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-02-26 17:56:32 +0200
commit01eb2ad24fc90ba5cf21e703d7bebe7538bd14ba (patch)
tree10cdcb266bdd85d71e778dddb536bc45e4d93eeb
parent7f5db665969865cd6a72841887dddb87a06fd5b9 (diff)
downloadqt-creator-01eb2ad24fc90ba5cf21e703d7bebe7538bd14ba.tar.gz
Compile fix: Add missing includes
Change-Id: Ie93829eb73888646fcfd76746cd74bd7c1b09924 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r--plugins/autotest/testcodeparser.cpp1
-rw-r--r--plugins/autotest/testnavigationwidget.cpp3
-rw-r--r--plugins/autotest/testresultspane.cpp2
3 files changed, 6 insertions, 0 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index 6577b5197f..ed8e1facf4 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -22,6 +22,7 @@
#include "testinfo.h"
#include "testvisitor.h"
+#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/progressmanager/futureprogress.h>
#include <coreplugin/progressmanager/progressmanager.h>
diff --git a/plugins/autotest/testnavigationwidget.cpp b/plugins/autotest/testnavigationwidget.cpp
index b58e8a6b52..e23ebb5c88 100644
--- a/plugins/autotest/testnavigationwidget.cpp
+++ b/plugins/autotest/testnavigationwidget.cpp
@@ -26,12 +26,15 @@
#include "autotestconstants.h"
#include "testtreeitem.h"
+#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/find/itemviewfind.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/icore.h>
#include <texteditor/texteditor.h>
#include <utils/progressindicator.h>
+#include <QAction>
+#include <QMenu>
#include <QTimer>
#include <QToolButton>
#include <QVBoxLayout>
diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp
index 6985a7d86f..6b50fd5fd6 100644
--- a/plugins/autotest/testresultspane.cpp
+++ b/plugins/autotest/testresultspane.cpp
@@ -26,6 +26,7 @@
#include "testtreemodel.h"
#include <coreplugin/coreconstants.h>
+#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/icontext.h>
#include <texteditor/texteditor.h>
@@ -35,6 +36,7 @@
#include <QDebug>
#include <QHBoxLayout>
+#include <QMenu>
#include <QToolButton>
#include <QVBoxLayout>