summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 11:45:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 20:59:32 +0900
commit147aca7d8e7fe21364884200823577d0b9ade0a4 (patch)
tree18bb9cde8be24020d30295c130f713171b9ea060
parented876dc3743b8e65fa280010fb53abb079b982ef (diff)
downloadk3b-147aca7d8e7fe21364884200823577d0b9ade0a4.tar.gz
k3b-147aca7d8e7fe21364884200823577d0b9ade0a4.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--doc/en/dcop.docbook14
-rw-r--r--plugins/decoder/flac/k3bflacdecoder.cpp7
-rw-r--r--plugins/decoder/mp3/k3bmaddecoder.cpp7
3 files changed, 15 insertions, 13 deletions
diff --git a/doc/en/dcop.docbook b/doc/en/dcop.docbook
index 0958946..4ab7cd4 100644
--- a/doc/en/dcop.docbook
+++ b/doc/en/dcop.docbook
@@ -76,13 +76,13 @@ void burn()
<para>K3b offers the K3bProjectInterface as listed above or the more powerful K3bDataProjectInterface which only applies to data projects (CD and DVD):
<programlisting>
-void createFolder(QString name)
-void createFolder(QString name,QString parent)
-void addUrl(KURL url,QString parent)
-void addUrls(KURL::List urls,QString parent)
-void removeItem(QString path)
-void renameItem(QString path,QString newName)
-void setVolumeID(QString id)
+void createFolder(TQString name)
+void createFolder(TQString name,TQString parent)
+void addUrl(KURL url,TQString parent)
+void addUrls(KURL::List urls,TQString parent)
+void removeItem(TQString path)
+void renameItem(TQString path,TQString newName)
+void setVolumeID(TQString id)
</programlisting>
</para>
diff --git a/plugins/decoder/flac/k3bflacdecoder.cpp b/plugins/decoder/flac/k3bflacdecoder.cpp
index 671bf4c..9d2ab81 100644
--- a/plugins/decoder/flac/k3bflacdecoder.cpp
+++ b/plugins/decoder/flac/k3bflacdecoder.cpp
@@ -33,6 +33,7 @@
#ifdef HAVE_TAGLIB
#include <taglib/tag.h>
#include <taglib/flacfile.h>
+#define TStringToTQString(s) TQString::fromUtf8((s).toCString(true))
#endif
#if !defined FLACPP_API_VERSION_CURRENT || FLACPP_API_VERSION_CURRENT < 6
@@ -293,9 +294,9 @@ bool K3bFLACDecoder::analyseFileInternal( K3b::Msf& frames, int& samplerate, int
kdDebug() << "(K3bFLACDecoder) using taglib to read tag" << endl;
TagLib::FLAC::File f( TQFile::encodeName(filename()) );
if( f.isOpen() ) {
- addMetaInfo( META_TITLE, TStringToQString( f.tag()->title() ) );
- addMetaInfo( META_ARTIST, TStringToQString( f.tag()->artist() ) );
- addMetaInfo( META_COMMENT, TStringToQString( f.tag()->comment() ) );
+ addMetaInfo( META_TITLE, TStringToTQString( f.tag()->title() ) );
+ addMetaInfo( META_ARTIST, TStringToTQString( f.tag()->artist() ) );
+ addMetaInfo( META_COMMENT, TStringToTQString( f.tag()->comment() ) );
}
}
#endif
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();
}