diff options
Diffstat (limited to 'quanta/project/rescanprj.cpp')
-rw-r--r-- | quanta/project/rescanprj.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/project/rescanprj.cpp b/quanta/project/rescanprj.cpp index 1c97da09..2b4cc8e4 100644 --- a/quanta/project/rescanprj.cpp +++ b/quanta/project/rescanprj.cpp @@ -123,7 +123,7 @@ void RescanPrj::addEntries(KIO::Job *job,const KIO::UDSEntryList &list) found = true; break; } - if (!prjFileList.tqcontains(u) && !found) + if (!prjFileList.contains(u) && !found) { linkItems.append(new KFileItem(item)); } else @@ -137,7 +137,7 @@ void RescanPrj::addEntries(KIO::Job *job,const KIO::UDSEntryList &list) itemURL = item.url(); if (item.isDir()) itemURL.adjustPath(+1); - ProjectURL *proUrl = prjFileList.tqfind(itemURL); + ProjectURL *proUrl = prjFileList.find(itemURL); if (!proUrl) { urlEntry.url = prjFileList.toRelative(itemURL); |