summaryrefslogtreecommitdiffstats
path: root/src/translators/freedbimporter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-07 11:06:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-07 22:47:28 +0900
commitc92208d14a28d875009e98120d51b1673ff8402a (patch)
tree15e498b977291c632412ea3370832a83952a4c89 /src/translators/freedbimporter.cpp
parent41a6fb44cdeab6944d6db766b473f675930af8e6 (diff)
downloadtellico-remove/kde-is-version.tar.gz
tellico-remove/kde-is-version.zip
Remove use of KDE_IS_VERSIONremove/kde-is-version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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("; ")));