diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp index b9f0388b674..a67a87fe47f 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.cpp +++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp @@ -588,30 +588,6 @@ void ProjectFileWizardExtension::applyCodeStyle(GeneratedFile *file) const file->setContents(doc.toPlainText()); } -QStringList ProjectFileWizardExtension::getProjectChoices() const -{ - QStringList projectChoices; - QStringList projectToolTips; - ProjectNode::ProjectAction projectAction; - - getProjectChoicesAndToolTips(&projectChoices, &projectToolTips, &projectAction, - QString(), m_context); - - return projectChoices; -} - -QStringList ProjectFileWizardExtension::getProjectToolTips() const -{ - QStringList projectChoices; - QStringList projectToolTips; - ProjectNode::ProjectAction projectAction; - - getProjectChoicesAndToolTips(&projectChoices, &projectToolTips, &projectAction, - QString(), m_context); - - return projectToolTips; -} - void ProjectFileWizardExtension::hideProjectComboBox() { m_context->page->setProjectComoBoxVisible(false); diff --git a/src/plugins/projectexplorer/projectfilewizardextension.h b/src/plugins/projectexplorer/projectfilewizardextension.h index 4f7b912e7d4..8046b0af05d 100644 --- a/src/plugins/projectexplorer/projectfilewizardextension.h +++ b/src/plugins/projectexplorer/projectfilewizardextension.h @@ -52,9 +52,6 @@ public: bool *removeOpenProjectAttribute, QString *errorMessage); void applyCodeStyle(Core::GeneratedFile *file) const; - QStringList getProjectChoices() const; - QStringList getProjectToolTips() const; - void hideProjectComboBox(); void setProjectIndex(int i);