diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 33f08e93132a53bf14f41f5f1e567eeea832b336 (patch) | |
tree | f71204bc1c7d41a0545805a1276c5af43e1c3094 /src/password.cpp | |
parent | 14284db4dfa93999d6227344141e8663d9fcf7f9 (diff) | |
download | basket-33f08e93132a53bf14f41f5f1e567eeea832b336.tar.gz basket-33f08e93132a53bf14f41f5f1e567eeea832b336.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/basket@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/password.cpp')
-rw-r--r-- | src/password.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/password.cpp b/src/password.cpp index ee48087..39cf18d 100644 --- a/src/password.cpp +++ b/src/password.cpp @@ -60,7 +60,7 @@ TQString PasswordDlg::key() const TQString s = w->keyCombo->currentText(); if(s.length() < 16) return ""; - int n = s.tqfindRev(' '); + int n = s.findRev(' '); if(n < 0) return ""; return s.mid(n+1); @@ -75,7 +75,7 @@ void PasswordDlg::setKey(const TQString& key) { for(int i = 0; i < w->keyCombo->count(); ++i) { - if(w->keyCombo->text(i).tqfind(key) >= 0) + if(w->keyCombo->text(i).find(key) >= 0) { w->keyCombo->setCurrentItem(i); return; |