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 | 33e6166f7e62c479bad5d46ad240ea9704f848fd (patch) | |
tree | bc5e8185ff98d6a605247158ca6a5b924dccd67a /src/k9main.cpp | |
parent | 68db2ce8a8c330a47485477eb3cee9e7036f6071 (diff) | |
download | k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.tar.gz k9copy-33e6166f7e62c479bad5d46ad240ea9704f848fd.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k9main.cpp')
-rw-r--r-- | src/k9main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k9main.cpp b/src/k9main.cpp index 055fe17..20b35fc 100644 --- a/src/k9main.cpp +++ b/src/k9main.cpp @@ -1254,11 +1254,11 @@ void k9Main::deviceRemoved(k9CdDrive *_drive) { if (_drive->device == dvd->getDevice()) closeDVD(); - int i=driveList.tqfind(_drive); + int i=driveList.find(_drive); driveList.remove(i); cbInputDev->removeItem(i); - i=recorderList.tqfind(_drive); + i=recorderList.find(_drive); recorderList.remove( i); cbOutputDev->removeItem(i+2); |