From: Peter Penz Date: Thu, 12 Mar 2009 16:56:13 +0000 (+0000) Subject: SVN_SILENT: coding style fix X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/ec48b26a156c8dbe5cbb90c0c89e8643010f5dbe SVN_SILENT: coding style fix svn path=/trunk/KDE/kdebase/apps/; revision=938679 --- 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); }