From 2a009357592ea889a3bbf83a6baa3a1a67d44226 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Fri, 9 Apr 2010 00:34:48 +0000 Subject: [PATCH] Oops, forgot to pass this to the base class. --- src/playlistview.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/playlistview.cpp b/src/playlistview.cpp index 9937f4b68..b2d7bc536 100644 --- a/src/playlistview.cpp +++ b/src/playlistview.cpp @@ -347,7 +347,9 @@ void PlaylistView::InhibitAutoscrollTimeout() { inhibit_autoscroll_ = false; } -void PlaylistView::dataChanged(const QModelIndex&, const QModelIndex&) { +void PlaylistView::dataChanged(const QModelIndex& topleft, + const QModelIndex& bottomright) { + QTreeView::dataChanged(topleft, bottomright); MaybeAutoscroll(); }