diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /plugins/decoder/mp3/k3bmad.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/decoder/mp3/k3bmad.h')
-rw-r--r-- | plugins/decoder/mp3/k3bmad.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/decoder/mp3/k3bmad.h b/plugins/decoder/mp3/k3bmad.h index a4d9aae..d526c1d 100644 --- a/plugins/decoder/mp3/k3bmad.h +++ b/plugins/decoder/mp3/k3bmad.h @@ -20,7 +20,7 @@ extern "C" { #include <mad.h> } -#include <qfile.h> +#include <tqfile.h> class K3bMad @@ -29,7 +29,7 @@ public: K3bMad(); ~K3bMad(); - bool open( const QString& filename ); + bool open( const TQString& filename ); /** * @return true if the mad stream contains data @@ -59,13 +59,13 @@ public: * care about the status of the mad stream. Use streamPos() * in that case. */ - QIODevice::Offset inputPos() const; + TQIODevice::Offset inputPos() const; /** * Current absolut position of the decoder stream. */ - QIODevice::Offset streamPos() const; - bool inputSeek( QIODevice::Offset pos ); + TQIODevice::Offset streamPos() const; + bool inputSeek( TQIODevice::Offset pos ); void initMad(); void cleanup(); @@ -80,7 +80,7 @@ public: mad_timer_t* madTimer; private: - QFile m_inputFile; + TQFile m_inputFile; bool m_madStructuresInitialized; unsigned char* m_inputBuffer; bool m_bInputError; |