summaryrefslogtreecommitdiffstats
path: root/src/ksvnwidgets/pwstorage.cpp
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/ksvnwidgets/pwstorage.cpp
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/ksvnwidgets/pwstorage.cpp')
-rw-r--r--src/ksvnwidgets/pwstorage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ksvnwidgets/pwstorage.cpp b/src/ksvnwidgets/pwstorage.cpp
index 492e6f6..604b60f 100644
--- a/src/ksvnwidgets/pwstorage.cpp
+++ b/src/ksvnwidgets/pwstorage.cpp
@@ -152,7 +152,7 @@ bool PwStorage::getLogin(const TQString&realm,TQString&user,TQString&pw)
}
TQMap<TQString,TQString> content;
int j = mData->getWallet()->readMap(realm,content);
- if (j!=0||content.tqfind("user")==content.end()) {
+ if (j!=0||content.find("user")==content.end()) {
return true;
}
user = content["user"];
@@ -163,7 +163,7 @@ bool PwStorage::getLogin(const TQString&realm,TQString&user,TQString&pw)
bool PwStorage::getCachedLogin(const TQString&realm,TQString&user,TQString&pw)
{
TQMutexLocker lc(mData->getCacheMutex());
- PwStorageData::cache_type::ConstIterator it = mData->getLoginCache()->tqfind(realm);
+ PwStorageData::cache_type::ConstIterator it = mData->getLoginCache()->find(realm);
if (it!=mData->getLoginCache()->end()) {
user=(*it).first;
pw = (*it).second;