┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-03-20 17:19:12 +0100
committerPeter Penz <[email protected]>2012-03-20 17:23:28 +0100
commit03a65da80aea562ea51bf6db12a30a1acf097368 (patch)
tree4a296f22413042ed0f65fe463c97eb21d4a82751 /src/views
parent0dcb51b927f70afa6cba0b9185abb1f323052696 (diff)
KFileItemModel: Remove minimum-update timer
The timer became unnecessary after introducing the behavior to collect all new items until KDirLister emits a completed()-signal.
Diffstat (limited to 'src/views')
-rw-r--r--src/views/dolphinview.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 75561a9c6..f3d386b3b 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -1135,9 +1135,7 @@ void DolphinView::slotDirListerStarted(const KUrl& url)
void DolphinView::slotLoadingCompleted()
{
// Update the view-state. This has to be done using a Qt::QueuedConnection
- // because the view might not be in its final state yet (the view also
- // listens to the completed()-signal from KDirLister and the order of
- // of slots is undefined).
+ // because the view might not be in its final state yet.
QTimer::singleShot(0, this, SLOT(updateViewState()));
emit finishedPathLoading(url());