diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-02-18 16:10:56 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-02-18 16:10:56 +0100 |
commit | 93d3205459a3e6db65d3f4a8ed5c8e3a5a62f48d (patch) | |
tree | f2adf0c245f96796c415b81cd696fa2ace473374 /src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp | |
parent | cdf2ec6f114a4edc3b80449b96297d9eba062b3f (diff) | |
download | qt-creator-93d3205459a3e6db65d3f4a8ed5c8e3a5a62f48d.tar.gz |
Update Wizards to new signature
Seems like I missed some the first time round. Sorry for that!
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp index 9919cec32a..248c72bac2 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp @@ -154,8 +154,9 @@ Core::GeneratedFiles QmlProjectApplicationWizard::generateFiles(const QWizard *w return files; } -bool QmlProjectApplicationWizard::postGenerateFiles(const Core::GeneratedFiles &l, QString *errorMessage) +bool QmlProjectApplicationWizard::postGenerateFiles(const QWizard *w, const Core::GeneratedFiles &l, QString *errorMessage) { + Q_UNUSED(w); // Post-Generate: Open the project const QString proFileName = l.back().path(); if (!ProjectExplorer::ProjectExplorerPlugin::instance()->openProject(proFileName)) { |