summaryrefslogtreecommitdiffstats
path: root/kscd/kscd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kscd/kscd.cpp')
-rw-r--r--kscd/kscd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kscd/kscd.cpp b/kscd/kscd.cpp
index ef944999..7c8af4b1 100644
--- a/kscd/kscd.cpp
+++ b/kscd/kscd.cpp
@@ -881,7 +881,7 @@ void KSCD::make_random_list()
{
do {
selected = 1 + (int) randSequence.getLong(m_cd->tracks());
- rejected = (random_list.tqfind(selected) != random_list.end());
+ rejected = (random_list.find(selected) != random_list.end());
} while(rejected == true);
random_list.append(selected);
}
@@ -1245,7 +1245,7 @@ void KSCD::lookupCDDBDone(CDDB::Result result)
void KSCD::setCDInfo(KCDDB::CDInfo info)
{
// Some sanity provisions to ensure that the number of records matches what
- // the CD actually tqcontains.
+ // the CD actually contains.
while (info.trackInfoList.count() < cddbInfo.trackInfoList.count())
{
info.trackInfoList.append(KCDDB::TrackInfo());