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>
This commit is contained in:
hjk
2024-01-15 16:21:30 +01:00
parent 590a54828c
commit 1992efddfc
6 changed files with 52 additions and 56 deletions

View File

@@ -221,7 +221,7 @@ QFuture<PipPackageInfo> Pip::info(const PipPackage &package)
}
Pip::Pip(const Utils::FilePath &python)
: QObject(PythonPlugin::instance())
: QObject(pluginInstance())
, m_python(python)
{}