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 /k9devices/k9cddrive.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 'k9devices/k9cddrive.cpp')
-rw-r--r-- | k9devices/k9cddrive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k9devices/k9cddrive.cpp b/k9devices/k9cddrive.cpp index 5fdf0bf..954bd36 100644 --- a/k9devices/k9cddrive.cpp +++ b/k9devices/k9cddrive.cpp @@ -157,10 +157,10 @@ void k9CdDrives::readConfig() { TQStringList::Iterator it3=lIO.at(i); drive->name=(*it2); TQString c=(*it3); - if (c.tqcontains("I")) { + if (c.contains("I")) { drive->canReadDVD=true; } - if (c.tqcontains("O")) { + if (c.contains("O")) { drive->canWriteCDR=true; drive->canWriteDVD=true; } |