| 648 | } |
| 649 | |
| 650 | QString pqFileDialogModel::absoluteFilePath(const QString& path) |
| 651 | { |
| 652 | if (path.isEmpty()) |
| 653 | { |
| 654 | return QString(); |
| 655 | } |
| 656 | |
| 657 | vtkPVFileInformation* info; |
| 658 | info = this->Implementation->GetData(false, path, false); |
| 659 | return this->Implementation->cleanPath(QString::fromUtf8(info->GetFullPath())); |
| 660 | } |
| 661 | |
| 662 | QStringList pqFileDialogModel::getFilePaths(const QModelIndex& localIndex) |
| 663 | { |
no test coverage detected