┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-03-12 16:56:13 +0000
committerPeter Penz <[email protected]>2009-03-12 16:56:13 +0000
commitec48b26a156c8dbe5cbb90c0c89e8643010f5dbe (patch)
treeca0357ebf9b26733b954abb7e0035e3b768aa6ed /src/dolphinview.cpp
parent26a75802ebcd74dc9182ff8f2ef9acf8319e0037 (diff)
SVN_SILENT: coding style fix
svn path=/trunk/KDE/kdebase/apps/; revision=938679
Diffstat (limited to 'src/dolphinview.cpp')
-rw-r--r--src/dolphinview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 8b914de40..7d7b3503b 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -600,15 +600,15 @@ void DolphinView::changeSelection(const KFileItemList& selection)
}
const KUrl& baseUrl = url();
KUrl url;
- QItemSelection new_selection;
+ QItemSelection newSelection;
foreach(const KFileItem& item, selection) {
url = item.url().upUrl();
if (baseUrl.equals(url, KUrl::CompareWithoutTrailingSlash)) {
QModelIndex index = m_proxyModel->mapFromSource(m_dolphinModel->indexForItem(item));
- new_selection.select(index, index);
+ newSelection.select(index, index);
}
}
- itemView()->selectionModel()->select(new_selection,
+ itemView()->selectionModel()->select(newSelection,
QItemSelectionModel::ClearAndSelect
| QItemSelectionModel::Current);
}