make changing the build dir of a shadow build work

This commit is contained in:
Oswald Buddenhagen
2009-03-27 20:44:50 +01:00
parent 4a1acffb29
commit cd93d9e3dd
2 changed files with 30 additions and 17 deletions

View File

@@ -115,6 +115,7 @@ class CMakeRunPage : public QWizardPage
public:
CMakeRunPage(CMakeOpenProjectWizard *cmakeWizard);
CMakeRunPage(CMakeOpenProjectWizard *cmakeWizard, const QString &buildDirectory, bool update);
virtual void initializePage();
virtual void cleanupPage();
virtual bool isComplete() const;
private slots:
@@ -130,7 +131,9 @@ private:
QLineEdit *m_argumentsLineEdit;
QLabel *m_descriptionLabel;
bool m_complete;
bool m_update;
QString m_buildDirectory;
QString m_presetBuildDirectory;
};
}