summaryrefslogtreecommitdiffstats
path: root/plugins/decoder/mp3/k3bmaddecoder.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-26 11:45:44 +0900
committerMichele Calgaro <[email protected]>2023-09-26 23:48:52 +0900
commitbf674dd36ebc152216b88eccccd6c6fd720d9f24 (patch)
tree18bb9cde8be24020d30295c130f713171b9ea060 /plugins/decoder/mp3/k3bmaddecoder.cpp
parentc063a706bb5c136b364ff0b391d9e06746d102b9 (diff)
downloadk3b-bf674dd36ebc152216b88eccccd6c6fd720d9f24.tar.gz
k3b-bf674dd36ebc152216b88eccccd6c6fd720d9f24.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 147aca7d8e7fe21364884200823577d0b9ade0a4)
Diffstat (limited to 'plugins/decoder/mp3/k3bmaddecoder.cpp')
-rw-r--r--plugins/decoder/mp3/k3bmaddecoder.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/decoder/mp3/k3bmaddecoder.cpp b/plugins/decoder/mp3/k3bmaddecoder.cpp
index a28e24b..ece3ea7 100644
--- a/plugins/decoder/mp3/k3bmaddecoder.cpp
+++ b/plugins/decoder/mp3/k3bmaddecoder.cpp
@@ -48,6 +48,7 @@
#ifdef HAVE_TAGLIB
#include <taglib/tag.h>
#include <taglib/mpegfile.h>
+#define TStringToTQString(s) TQString::fromUtf8((s).toCString(true))
#endif
@@ -110,11 +111,11 @@ TQString K3bMadDecoder::metaInfo( MetaDataField f )
if ( file.tag() ) {
switch( f ) {
case META_TITLE:
- return TStringToQString( file.tag()->title() );
+ return TStringToTQString( file.tag()->title() );
case META_ARTIST:
- return TStringToQString( file.tag()->artist() );
+ return TStringToTQString( file.tag()->artist() );
case META_COMMENT:
- return TStringToQString( file.tag()->comment() );
+ return TStringToTQString( file.tag()->comment() );
default:
return TQString();
}