From: Peter Penz Date: Sat, 6 Dec 2008 20:01:58 +0000 (+0000) Subject: SVN_SILENT: removed debugging output X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d2e8f27200727a7a8d12932176f21c1e81dcad93?ds=inline SVN_SILENT: removed debugging output svn path=/trunk/KDE/kdebase/apps/; revision=893545 --- diff --git a/src/folderexpander.cpp b/src/folderexpander.cpp index a5b6b35ee..e742972d3 100644 --- a/src/folderexpander.cpp +++ b/src/folderexpander.cpp @@ -34,7 +34,6 @@ #include #include -#include FolderExpander::FolderExpander(QAbstractItemView *view, QSortFilterProxyModel *proxyModel) : QObject(view), @@ -94,13 +93,6 @@ FolderExpander::~FolderExpander() void FolderExpander::viewScrolled() { if (m_autoExpandTriggerTimer->isActive()) { - kDebug() << "Resetting time due to scrolling!"; - // (Re-)set the timer while we're scrolling the view - // (or it's being scrolled by some external mechanism). - // TODO - experiment with this. Cancelling the timer, - // or adding a "penalty" on top of AUTO_EXPAND_DELAY - // might work more nicely when drilling down through the sidebar - // tree. m_autoExpandTriggerTimer->start(AUTO_EXPAND_DELAY); } } @@ -123,8 +115,6 @@ void FolderExpander::autoExpandTimeout() if (itemToExpand.isNull()) { return; } - - kDebug() << "Need to expand: " << itemToExpand.targetUrl() << " isDir? = " << itemToExpand.isDir(); if (itemToExpand.isDir()) { QTreeView *viewAsTreeView = qobject_cast(m_view);