forked from qt-creator/qt-creator
Consistently use Utils::FileNameList
Consistently use Utils::FileNameList in favor of QList<Utils::FileName> Change-Id: Iafbb466c882bfd91c25c9e78f107d401bfdb6d55 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
This commit is contained in:
@@ -86,12 +86,12 @@ QString GenericProjectWizardDialog::path() const
|
||||
return m_firstPage->path();
|
||||
}
|
||||
|
||||
QList<Utils::FileName> GenericProjectWizardDialog::selectedPaths() const
|
||||
Utils::FileNameList GenericProjectWizardDialog::selectedPaths() const
|
||||
{
|
||||
return m_secondPage->selectedPaths();
|
||||
}
|
||||
|
||||
QList<Utils::FileName> GenericProjectWizardDialog::selectedFiles() const
|
||||
Utils::FileNameList GenericProjectWizardDialog::selectedFiles() const
|
||||
{
|
||||
return m_secondPage->selectedFiles();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user