-----------------------------------------------------------------------------
| 910 | |
| 911 | //----------------------------------------------------------------------------- |
| 912 | QStringList pqFileDialog::getSelectedFiles(int index) |
| 913 | { |
| 914 | auto& impl = *this->Implementations[this->SelectedLocation]; |
| 915 | if (index < 0 || index >= impl.SelectedFiles.size()) |
| 916 | { |
| 917 | return QStringList(); |
| 918 | } |
| 919 | return impl.SelectedFiles[index]; |
| 920 | } |
| 921 | |
| 922 | //----------------------------------------------------------------------------- |
| 923 | int pqFileDialog::getSelectedFilterIndex() |