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:
@@ -175,14 +175,14 @@ bool FilesSelectionWizardPage::isComplete() const
|
||||
return m_finished;
|
||||
}
|
||||
|
||||
QList<Utils::FileName> FilesSelectionWizardPage::selectedPaths() const
|
||||
Utils::FileNameList FilesSelectionWizardPage::selectedPaths() const
|
||||
{
|
||||
return m_model ? m_model->selectedPaths() : QList<Utils::FileName>();
|
||||
return m_model ? m_model->selectedPaths() : Utils::FileNameList();
|
||||
}
|
||||
|
||||
QList<Utils::FileName> FilesSelectionWizardPage::selectedFiles() const
|
||||
Utils::FileNameList FilesSelectionWizardPage::selectedFiles() const
|
||||
{
|
||||
return m_model ? m_model->selectedFiles() : QList<Utils::FileName>();
|
||||
return m_model ? m_model->selectedFiles() : Utils::FileNameList();
|
||||
}
|
||||
|
||||
void FilesSelectionWizardPage::applyFilter()
|
||||
|
||||
Reference in New Issue
Block a user