summaryrefslogtreecommitdiffstats
path: root/parts/replace/replacedlgimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/replace/replacedlgimpl.cpp')
-rw-r--r--parts/replace/replacedlgimpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parts/replace/replacedlgimpl.cpp b/parts/replace/replacedlgimpl.cpp
index 0973e54f..87be28f9 100644
--- a/parts/replace/replacedlgimpl.cpp
+++ b/parts/replace/replacedlgimpl.cpp
@@ -27,7 +27,7 @@ TQString escape(const TQString &str)
for (uint i=0; i < str.length(); ++i)
{
- if (escaped.tqfind(str[i]) != -1)
+ if (escaped.find(str[i]) != -1)
res += "\\";
res += str[i];
}