diff options
Diffstat (limited to 'archiveview.cpp')
-rw-r--r-- | archiveview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archiveview.cpp b/archiveview.cpp index e2cfac7..34fd169 100644 --- a/archiveview.cpp +++ b/archiveview.cpp @@ -51,7 +51,7 @@ ArchiveView::ArchiveView(QWidget *parent) : QWidget(parent), mConstructing(true) // item in the list, nothing will happen otherwise! mArchiveModel->setOrder(sortOrderName); connect(mSortOrder, SIGNAL(currentIndexChanged(QString)), mArchiveModel, SLOT(setOrder(QString))); - connect(mArchiveModel, SIGNAL(collectorDone()), this, SLOT(expandedItems())); + connect(mArchiveModel, SIGNAL(modelReset()), this, SLOT(expandedItems())); QLabel *l1 = new QLabel(tr("Filter")); mFilter = new QLineEdit; |