summaryrefslogtreecommitdiffstats
path: root/src/kile/kiletool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kiletool.cpp')
-rw-r--r--src/kile/kiletool.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kile/kiletool.cpp b/src/kile/kiletool.cpp
index e7eb843..c3d6551 100644
--- a/src/kile/kiletool.cpp
+++ b/src/kile/kiletool.cpp
@@ -100,7 +100,7 @@ namespace KileTool
for( it.toFirst() ; it.current(); ++it )
{
// KILE_DEBUG() << "translate " << str << " /// key=" << it.currentKey() << " value=" << *(it.current()) << endl;
- str.tqreplace(it.currentKey(), *( it.current() ) );
+ str.replace(it.currentKey(), *( it.current() ) );
}
}
@@ -257,7 +257,7 @@ namespace KileTool
{
TQString src = source;
if ( (m_from.length() > 0) && (info.extension(false).length() > 0) )
- src.tqreplace(TQRegExp(info.extension(false) + '$'), m_from);
+ src.replace(TQRegExp(info.extension(false) + '$'), m_from);
info.setFile(src);
}
@@ -482,8 +482,8 @@ namespace KileTool
bool Base::addDict(const TQString & key, const TQString & value)
{
- bool e = (paramDict()->tqfind(key) == 0);
- paramDict()->tqreplace(key, &value);
+ bool e = (paramDict()->find(key) == 0);
+ paramDict()->replace(key, &value);
return e;
}