summaryrefslogtreecommitdiffstats
path: root/src/kiosvn
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit93f9fda465964160b66d9252d2cf9b4c284eab50 (patch)
tree51575108fadbf39900f2168fc504ad66b59906c3 /src/kiosvn
parent4be907152dfb5461311d9db1d63120c28a0bad0a (diff)
downloadtdesvn-93f9fda465964160b66d9252d2cf9b4c284eab50.tar.gz
tdesvn-93f9fda465964160b66d9252d2cf9b4c284eab50.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kiosvn')
-rw-r--r--src/kiosvn/kiosvn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kiosvn/kiosvn.cpp b/src/kiosvn/kiosvn.cpp
index b71a1d8..2036f5e 100644
--- a/src/kiosvn/kiosvn.cpp
+++ b/src/kiosvn/kiosvn.cpp
@@ -123,14 +123,14 @@ svn::Revision KioSvnData::urlToRev(const KURL&url)
/* we try to check if it is ssh and try to get a password for it */
TQString proto = url.protocol();
- if (proto.tqfind("ssh")!=-1) {
+ if (proto.find("ssh")!=-1) {
SshAgent ag;
ag.addSshIdentities();
}
svn::Revision rev,tmp;
rev = svn::Revision::UNDEFINED;
- if (q.tqfind("rev")!=q.end()) {
+ if (q.find("rev")!=q.end()) {
TQString v = q["rev"];
m_Svnclient->url2Revision(v,rev,tmp);
}