Oops, forgot to pass this to the base class.

This commit is contained in:
David Sansome 2010-04-09 00:34:48 +00:00
parent fba0af14ae
commit 2a00935759
1 changed files with 3 additions and 1 deletions

View File

@ -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();
}