summaryrefslogtreecommitdiffstats
path: root/src/translators/freedbimporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/translators/freedbimporter.cpp')
-rw-r--r--src/translators/freedbimporter.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/translators/freedbimporter.cpp b/src/translators/freedbimporter.cpp
index ae3eb4f..2480d88 100644
--- a/src/translators/freedbimporter.cpp
+++ b/src/translators/freedbimporter.cpp
@@ -269,11 +269,7 @@ void FreeDBImporter::readCDROM() {
TQStringList trackList;
KCDDB::TrackInfoList t = info.trackInfoList;
for(uint i = 0; i < t.count(); ++i) {
-#if KDE_IS_VERSION(3,4,90)
TQString s = t[i].get(TQString::fromLatin1("title")).toString() + "::" + info.artist;
-#else
- TQString s = t[i].title + "::" + info.artist;
-#endif
if(i < lengths.count()) {
s += "::" + Tellico::minutes(lengths[i]);
}
@@ -388,11 +384,7 @@ void FreeDBImporter::readCache() {
TQStringList trackList;
KCDDB::TrackInfoList t = info.trackInfoList;
for(uint i = 0; i < t.count(); ++i) {
-#if KDE_IS_VERSION(3,4,90)
trackList << t[i].get(TQString::fromLatin1("title")).toString();
-#else
- trackList << t[i].title;
-#endif
}
entry->setField(track, trackList.join(TQString::fromLatin1("; ")));