summaryrefslogtreecommitdiffstats
path: root/kio/kio/kservicetypefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kio/kservicetypefactory.cpp')
-rw-r--r--kio/kio/kservicetypefactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kio/kio/kservicetypefactory.cpp b/kio/kio/kservicetypefactory.cpp
index cb0f66fa1..393526eff 100644
--- a/kio/kio/kservicetypefactory.cpp
+++ b/kio/kio/kservicetypefactory.cpp
@@ -102,7 +102,7 @@ TQVariant::Type KServiceTypeFactory::findPropertyTypeByName(const TQString &_nam
assert (!KSycoca::self()->isBuilding());
- TQMapConstIterator<TQString,int> it = m_propertyTypeDict.tqfind(_name);
+ TQMapConstIterator<TQString,int> it = m_propertyTypeDict.find(_name);
if (it != m_propertyTypeDict.end()) {
return (TQVariant::Type)it.data();
}
@@ -134,7 +134,7 @@ KMimeType * KServiceTypeFactory::findFromPattern(const TQString &_filename, TQSt
TQ_INT32 right = nrOfEntries - 1;
TQ_INT32 middle;
// Extract extension
- int lastDot = _filename.tqfindRev('.');
+ int lastDot = _filename.findRev('.');
int ext_len = _filename.length() - lastDot - 1;
if (lastDot != -1 && ext_len <= 4) // if no '.', skip the extension lookup
{