mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
kfind: remove non-operational bits
see the following commit in kdelibs repo: a2e6cb8a18dcdab4dea6ef42ea16cfb9c776e171 Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
277708c2dc
commit
449c5a5b39
2 changed files with 0 additions and 13 deletions
|
@ -97,7 +97,6 @@ void KQuery::start()
|
||||||
connect(job, SIGNAL(entries(KIO::Job*,KIO::UDSEntryList)),
|
connect(job, SIGNAL(entries(KIO::Job*,KIO::UDSEntryList)),
|
||||||
SLOT(slotListEntries(KIO::Job*,KIO::UDSEntryList)));
|
SLOT(slotListEntries(KIO::Job*,KIO::UDSEntryList)));
|
||||||
connect(job, SIGNAL(result(KJob*)), SLOT(slotResult(KJob*)));
|
connect(job, SIGNAL(result(KJob*)), SLOT(slotResult(KJob*)));
|
||||||
connect(job, SIGNAL(canceled(KJob*)), SLOT(slotCanceled(KJob*)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void KQuery::slotResult( KJob * _job )
|
void KQuery::slotResult( KJob * _job )
|
||||||
|
@ -109,17 +108,6 @@ void KQuery::slotResult( KJob * _job )
|
||||||
checkEntries();
|
checkEntries();
|
||||||
}
|
}
|
||||||
|
|
||||||
void KQuery::slotCanceled( KJob * _job )
|
|
||||||
{
|
|
||||||
if (job != _job) return;
|
|
||||||
job = 0;
|
|
||||||
|
|
||||||
m_fileItems.clear();
|
|
||||||
|
|
||||||
m_result=KIO::ERR_USER_CANCELED;
|
|
||||||
checkEntries();
|
|
||||||
}
|
|
||||||
|
|
||||||
void KQuery::slotListEntries(KIO::Job*, const KIO::UDSEntryList& list)
|
void KQuery::slotListEntries(KIO::Job*, const KIO::UDSEntryList& list)
|
||||||
{
|
{
|
||||||
const KIO::UDSEntryList::ConstIterator end = list.constEnd();
|
const KIO::UDSEntryList::ConstIterator end = list.constEnd();
|
||||||
|
|
|
@ -74,7 +74,6 @@ public Q_SLOTS:
|
||||||
/* List of files found using KIO */
|
/* List of files found using KIO */
|
||||||
void slotListEntries(KIO::Job *, const KIO::UDSEntryList &);
|
void slotListEntries(KIO::Job *, const KIO::UDSEntryList &);
|
||||||
void slotResult(KJob *);
|
void slotResult(KJob *);
|
||||||
void slotCanceled(KJob *);
|
|
||||||
|
|
||||||
Q_SIGNALS:
|
Q_SIGNALS:
|
||||||
void foundFileList( QList< QPair<KFileItem,QString> >);
|
void foundFileList( QList< QPair<KFileItem,QString> >);
|
||||||
|
|
Loading…
Add table
Reference in a new issue