From: Peter Penz Date: Wed, 3 Dec 2008 07:21:58 +0000 (+0000) Subject: SVN_SILENT: assure that the order of the methods match in the h + cpp file X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d5da272b00fd540273d796149d9633e4c2ab9d3a?ds=inline SVN_SILENT: assure that the order of the methods match in the h + cpp file svn path=/trunk/KDE/kdebase/apps/; revision=891866 --- diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 6fad094f7..9fb3f4b94 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -1052,6 +1052,11 @@ bool DolphinView::isTabsForFilesEnabled() const return m_tabsForFiles; } +bool DolphinView::itemsExpandable() const +{ + return (m_detailsView != 0) && m_detailsView->itemsExpandable(); +} + void DolphinView::emitContentsMoved() { // only emit the contents moved signal if: @@ -1419,11 +1424,6 @@ void DolphinView::deleteExpandedViews() m_expandedViews.clear(); } -bool DolphinView::itemsExpandable() const -{ - return (m_detailsView != 0) && m_detailsView->itemsExpandable(); -} - QMimeData* DolphinView::selectionMimeData() const { if (isColumnViewActive()) {