summaryrefslogtreecommitdiffstats
path: root/src/svnqt/url.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/url.cpp')
-rw-r--r--src/svnqt/url.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnqt/url.cpp b/src/svnqt/url.cpp
index 40565f6..383bdd1 100644
--- a/src/svnqt/url.cpp
+++ b/src/svnqt/url.cpp
@@ -151,13 +151,13 @@ namespace svn
{
const TQString tokenStart ("handles '");
const TQString tokenEnd ("' schem");
- pos = descriptions.tqfind (tokenStart, pos);
+ pos = descriptions.find (tokenStart, pos);
if (pos == not_found)
break;
pos += tokenStart.length ();
- int posEnd = descriptions.tqfind (tokenEnd, pos);
+ int posEnd = descriptions.find (tokenEnd, pos);
if (posEnd == not_found)
break;