aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonlanguageclient.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2024-01-15 16:21:30 +0100
committerhjk <hjk@qt.io>2024-01-16 10:42:45 +0000
commit1992efddfc2617d77d3e39ac3c2e6a4bf8d66a19 (patch)
tree27818c67c67863dccb40ec96cd6e25cdac4b9451 /src/plugins/python/pythonlanguageclient.cpp
parent590a54828c0703d0526d7244955f375c17cb0017 (diff)
Python: Move plugin class definition to .cpp
The plugin classes partially changed there purpose, they are no more meant to provide internal utility functionality. Change-Id: I9b9200995eaa95dcd924c94dcedb28e6d5db0be9 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/python/pythonlanguageclient.cpp')
-rw-r--r--src/plugins/python/pythonlanguageclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonlanguageclient.cpp b/src/plugins/python/pythonlanguageclient.cpp
index 5a54a8c4b64..aaf1e7c8a3d 100644
--- a/src/plugins/python/pythonlanguageclient.cpp
+++ b/src/plugins/python/pythonlanguageclient.cpp
@@ -265,7 +265,7 @@ PyLSClient *PyLSClient::clientForPython(const FilePath &python)
PyLSConfigureAssistant *PyLSConfigureAssistant::instance()
{
- static auto *instance = new PyLSConfigureAssistant(PythonPlugin::instance());
+ static auto *instance = new PyLSConfigureAssistant(pluginInstance());
return instance;
}