forked from qt-creator/qt-creator
IWizard and derived classses: Fix WS issues
No change otherwise. Change-Id: If23c9d56e48e9878c8424fc5863b70e9e4ff12f8 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -50,7 +50,7 @@ public:
|
||||
|
||||
private:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
|
||||
private:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -53,10 +53,10 @@ private:
|
||||
QString fileContents(const QString &baseName, ShaderType shaderType) const;
|
||||
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w,
|
||||
QString *errorMessage) const;
|
||||
QString *errorMessage) const;
|
||||
|
||||
QString preferredSuffix(ShaderType shaderType) const;
|
||||
|
||||
|
||||
@@ -43,9 +43,9 @@ public:
|
||||
|
||||
protected:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters ¶ms) const;
|
||||
const Core::WizardDialogParameters ¶ms) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles( const QWizard *dialog, QString *errorMessage) const;
|
||||
Core::GeneratedFiles generateFiles(const QWizard *dialog, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
} // namespace PythonEditor
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
|
||||
protected:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -46,7 +46,7 @@ public:
|
||||
|
||||
protected:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
|
||||
private:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -46,7 +46,7 @@ public:
|
||||
|
||||
private:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ public:
|
||||
|
||||
protected:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
|
||||
private:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
bool postGenerateFiles(const QWizard *, const Core::GeneratedFiles &l, QString *errorMessage);
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
|
||||
protected:
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -45,7 +45,7 @@ private:
|
||||
QString fileContents(const QString &baseName, bool statelessLibrary) const;
|
||||
|
||||
QWizard *createWizardDialog(QWidget *parent,
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
const Core::WizardDialogParameters &wizardDialogParameters) const;
|
||||
|
||||
Core::GeneratedFiles generateFiles(const QWizard *w, QString *errorMessage) const;
|
||||
};
|
||||
|
||||
@@ -114,7 +114,7 @@ public:
|
||||
}
|
||||
|
||||
void runWizard(const QString &, QWidget *, const QString &, const QVariantMap &)
|
||||
{ createFile(); }
|
||||
{ createFile(); }
|
||||
|
||||
public Q_SLOTS:
|
||||
virtual void createFile();
|
||||
|
||||
Reference in New Issue
Block a user