aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/appoutputpane.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-05-23 15:05:38 +0200
committerEike Ziller <eike.ziller@qt.io>2023-05-25 11:15:41 +0000
commitedd1a89807d605e180a40509bfe6c2598657d1e2 (patch)
tree266222d35086c3489da1eec368f3b954a16d227c /src/plugins/projectexplorer/appoutputpane.cpp
parent53aeaa1ca495013f62e3324a55306aabc98c4ba5 (diff)
Move SessionManager to Core plugin
Sessions are independent from projects, and this allows for removal of e.g. the dependency from Bookmarks to ProjectExplorer. Includes moving the command line arguments (-lastsession, <session>) to Core plugin. Change-Id: I6c578fd15c4990902e7196501de20f39376e90e8 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/appoutputpane.cpp')
-rw-r--r--src/plugins/projectexplorer/appoutputpane.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp
index 6f7e22bacd..3c76c2e62a 100644
--- a/src/plugins/projectexplorer/appoutputpane.cpp
+++ b/src/plugins/projectexplorer/appoutputpane.cpp
@@ -8,7 +8,6 @@
#include "projectexplorericons.h"
#include "projectexplorertr.h"
#include "runcontrol.h"
-#include "session.h"
#include "showoutputtaskhandler.h"
#include "windebuginterface.h"
@@ -17,6 +16,7 @@
#include <coreplugin/coreconstants.h>
#include <coreplugin/icore.h>
#include <coreplugin/outputwindow.h>
+#include <coreplugin/session.h>
#include <texteditor/behaviorsettings.h>
#include <texteditor/fontsettings.h>
#include <texteditor/texteditorsettings.h>
@@ -46,6 +46,7 @@
static Q_LOGGING_CATEGORY(appOutputLog, "qtc.projectexplorer.appoutput", QtWarningMsg);
+using namespace Core;
using namespace Utils;
namespace ProjectExplorer {