Simplfy API of CMakeOpenProjectWizard remove some left over QStringList

We don't call it with a list anymore, so make it just a QString
This commit is contained in:
dt
2009-05-26 15:50:27 +02:00
parent 0bda19a099
commit 14a79dad58
3 changed files with 25 additions and 14 deletions

View File

@@ -59,10 +59,16 @@ public:
CMakeRunPageId
};
enum Mode {
Nothing,
NeedToCreate,
NeedToUpdate
};
// used at importing a project without a .user file
CMakeOpenProjectWizard(CMakeManager *cmakeManager, const QString &sourceDirectory);
// used to update if we have already a .user file
CMakeOpenProjectWizard(CMakeManager *cmakeManager, const QString &sourceDirectory, const QStringList &needToCreate, const QStringList &needToUpdate);
CMakeOpenProjectWizard(CMakeManager *cmakeManager, const QString &sourceDirectory, const QString &buildDirectory, Mode mode);
// used to change the build directory of one buildconfiguration
CMakeOpenProjectWizard(CMakeManager *cmakeManager, const QString &sourceDirectory, const QString &oldBuildDirectory);