aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonlanguageclient.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2025-10-30 15:15:02 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2025-10-31 12:52:08 +0000
commit35a84b81c6f956281994b77a6b9e0b7286035db5 (patch)
tree0c43877b7a3986a9821ea2521f99e469e7204989 /src/plugins/python/pythonlanguageclient.cpp
parent2f27675104e8df5cd41be5d7b6cdcc2dd491953d (diff)
TaskTree: Switch to qt-ified QtTaskTree
Remove the old Tasking lib. Change-Id: Iacb4939cc873e25d6039efae7dd23510a7baa5f9 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/python/pythonlanguageclient.cpp')
-rw-r--r--src/plugins/python/pythonlanguageclient.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/python/pythonlanguageclient.cpp b/src/plugins/python/pythonlanguageclient.cpp
index d0084455b07..052ebe1d388 100644
--- a/src/plugins/python/pythonlanguageclient.cpp
+++ b/src/plugins/python/pythonlanguageclient.cpp
@@ -27,7 +27,7 @@
#include <projectexplorer/projectmanager.h>
#include <projectexplorer/target.h>
-#include <solutions/tasking/tasktreerunner.h>
+#include <QtTaskTree/QAbstractTaskTreeRunner>
#include <texteditor/textdocument.h>
#include <texteditor/texteditor.h>
@@ -41,7 +41,7 @@
using namespace LanguageClient;
using namespace LanguageServerProtocol;
using namespace ProjectExplorer;
-using namespace Tasking;
+using namespace QtTaskTree;
using namespace TextEditor;
using namespace Utils;
@@ -313,8 +313,8 @@ public:
void openDocument(const FilePath &python, TextDocument *document);
QHash<FilePath, QList<TextDocument *>> m_infoBarEntries;
- MappedTaskTreeRunner<TextDocument *> m_documentRunner;
- SingleTaskTreeRunner m_pipInstallerRunner;
+ QMappedTaskTreeRunner<TextDocument *> m_documentRunner;
+ QSingleTaskTreeRunner m_pipInstallerRunner;
};
void PyLSConfigureAssistant::installPythonLanguageServer(const FilePath &python,