summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/findimages/fuzzycompare.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/findimages/fuzzycompare.cpp')
-rw-r--r--kipi-plugins/findimages/fuzzycompare.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kipi-plugins/findimages/fuzzycompare.cpp b/kipi-plugins/findimages/fuzzycompare.cpp
index d588298..f9f9d91 100644
--- a/kipi-plugins/findimages/fuzzycompare.cpp
+++ b/kipi-plugins/findimages/fuzzycompare.cpp
@@ -105,7 +105,7 @@ TQDict < TQPtrVector < TQFile > > KIPIFindDupplicateImagesPlugin::FuzzyCompare:
// Create the 'ImageSimilarityData' data for the first image.
ImageSimilarityData *i1 = list->at(i);
- if (i1 && !fait->tqfind(i1->filename))
+ if (i1 && !fait->find(i1->filename))
{
sendMessage( m_parent, KIPIFindDupplicateImagesPlugin::Similar, i1->filename, 0, true, false );
@@ -122,14 +122,14 @@ TQDict < TQPtrVector < TQFile > > KIPIFindDupplicateImagesPlugin::FuzzyCompare:
TQPtrVector < TQFile > *vect;
// Add file to the list.
- if (!res.tqfind (i1->filename))
+ if (!res.find (i1->filename))
{
vect = new TQPtrVector < TQFile >;
vect->setAutoDelete(true);
res.insert (i1->filename, vect);
}
else
- vect = (TQPtrVector < TQFile > *)res.tqfind(i1->filename);
+ vect = (TQPtrVector < TQFile > *)res.find(i1->filename);
vect->resize (vect->size () + 1);
vect->insert (vect->size () - 1, new TQFile(i2->filename));