Python: remove unused function

Change-Id: Iceee91f761e080dcdd329375638f883261c0a319
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2023-01-25 15:00:25 +01:00
parent 44655995d1
commit dea3ea2262
2 changed files with 0 additions and 10 deletions

View File

@@ -92,15 +92,6 @@ void PySideInstaller::installPyside(const FilePath &python,
install->run();
}
void PySideInstaller::changeInterpreter(const QString &interpreterId,
RunConfiguration *runConfig)
{
if (runConfig) {
if (auto aspect = runConfig->aspect<InterpreterAspect>())
aspect->setCurrentInterpreter(PythonSettings::interpreter(interpreterId));
}
}
void PySideInstaller::handlePySideMissing(const FilePath &python,
const QString &pySide,
TextEditor::TextDocument *document)

View File

@@ -30,7 +30,6 @@ private:
void installPyside(const Utils::FilePath &python,
const QString &pySide, TextEditor::TextDocument *document);
void changeInterpreter(const QString &interpreterId, ProjectExplorer::RunConfiguration *runConfig);
void handlePySideMissing(const Utils::FilePath &python,
const QString &pySide,
TextEditor::TextDocument *document);