┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank Reininghaus <[email protected]>2011-10-16 20:45:10 +0200
committerFrank Reininghaus <[email protected]>2011-10-16 20:45:10 +0200
commit6840794b57987c5f0baf704327733b68fb92cfc6 (patch)
tree007186707bddb61e7b7546305562a302f250dc43 /src
parent91653bb1749e92fa0adadb7e618d443cca776351 (diff)
Sort the items in DolphinView::selectedItems(), part 2
I forgot this change in the last commit. CCBUG:283409
Diffstat (limited to 'src')
-rw-r--r--src/views/dolphinview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 122c18de7..5ff3cb26d 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -343,7 +343,7 @@ KFileItemList DolphinView::selectedItems() const
qSort(sortedIndexes);
KFileItemList selectedItems;
- QSetIterator<int> it(selectedIndexes);
+ QListIterator<int> it(sortedIndexes);
while (it.hasNext()) {
const int index = it.next();
selectedItems.append(model->fileItem(index));