summaryrefslogtreecommitdiffstats
path: root/lib/kofficecore/KoPictureCollection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kofficecore/KoPictureCollection.cpp')
-rw-r--r--lib/kofficecore/KoPictureCollection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficecore/KoPictureCollection.cpp b/lib/kofficecore/KoPictureCollection.cpp
index 3d680bf7..835beafb 100644
--- a/lib/kofficecore/KoPictureCollection.cpp
+++ b/lib/kofficecore/KoPictureCollection.cpp
@@ -37,7 +37,7 @@ KoPicture KoPictureCollection::findPicture(const KoPictureKey& key) const
#ifdef DEBUG_PICTURES
kdDebug(30003) << "KoPictureCollection::findPicture " << key.toString() << endl;
#endif
- ConstIterator it = tqfind( key );
+ ConstIterator it = find( key );
if ( it == end() )
{
KoPicture picture;
@@ -285,7 +285,7 @@ void KoPictureCollection::readFromStore( KoStore * store, const StoreMap & store
}
}
- const int pos=u.tqfindRev('.');
+ const int pos=u.findRev('.');
if (pos==-1)
{
kdError(30003) << "File with no extension! Not supported!" << endl;
@@ -305,7 +305,7 @@ void KoPictureCollection::readFromStore( KoStore * store, const StoreMap & store
KoPicture KoPictureCollection::findOrLoad(const TQString& fileName, const TQDateTime& dateTime)
{
// As now all KoPictureKey objects have a valid TQDateTime, we must do it without a date/time check.
- ConstIterator it = tqfind( KoPictureKey ( fileName, dateTime ) );
+ ConstIterator it = find( KoPictureKey ( fileName, dateTime ) );
if ( it == end() )
{
return loadPicture( fileName );