mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
fix signal
svn path=/trunk/KDE/kdebase/apps/; revision=610421
This commit is contained in:
parent
10134dca0f
commit
3d1ee2abd3
1 changed files with 4 additions and 2 deletions
|
@ -135,7 +135,8 @@ void KFindPart::removeFile(KFileItem *item)
|
|||
listiter.append(iter);
|
||||
}
|
||||
|
||||
emit newItems(listiter);
|
||||
if (listiter.count())
|
||||
emit newItems(listiter);
|
||||
emit finished();
|
||||
}
|
||||
|
||||
|
@ -145,7 +146,8 @@ void KFindPart::newFiles(const KFileItemList&)
|
|||
return;
|
||||
emit started();
|
||||
emit clear();
|
||||
emit newItems(m_lstFileItems);
|
||||
if (m_lstFileItems.count())
|
||||
emit newItems(m_lstFileItems);
|
||||
emit finished();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue