diff options
| author | Arno <am@disconnect.de> | 2013-03-17 10:13:27 +0100 |
|---|---|---|
| committer | Arno <am@disconnect.de> | 2013-03-17 10:13:27 +0100 |
| commit | c81dcb6c33342027017f0559444685168523f486 (patch) | |
| tree | eb020aea83556ba19d019ea669fad7a56695317e | |
| parent | 43152d8d9b3d4ebde6bb7c321cf4aa0696991a59 (diff) | |
| download | SheMov-c81dcb6c33342027017f0559444685168523f486.tar.gz SheMov-c81dcb6c33342027017f0559444685168523f486.tar.bz2 SheMov-c81dcb6c33342027017f0559444685168523f486.zip | |
Fix NewPicsDialog
another QFilesystemModel:: fix. Use SmDirModel instead.
| -rw-r--r-- | shemov.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1178,7 +1178,7 @@ void SheMov::newPicsDialogWithFiles(){ } QStringList files; foreach(QModelIndex idx, selected){ - files << idx.data(QFileSystemModel::FilePathRole).toString(); + files << idx.data(SmDirModel::FullPathRole).toString(); } NewPicsDialog npd(files, this); npd.exec(); |
