diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-12 06:03:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-12 06:03:55 +0000 |
commit | f104a9c30eedf5cc2ea3f2bd9c928bf5ca79da3d (patch) | |
tree | 916921d1c7f0f77da7ce65d5d5b14ffe6c276778 | |
parent | 44fe0cfe4ea6e1a3304dbfe30a030bb7b82c3931 (diff) | |
download | tdemultimedia-f104a9c30eedf5cc2ea3f2bd9c928bf5ca79da3d.tar.gz tdemultimedia-f104a9c30eedf5cc2ea3f2bd9c928bf5ca79da3d.zip |
Fix kdemultimedia Qt3 FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1236199 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | kioslave/audiocd/plugins/flac/encoderflac.cpp | 4 | ||||
-rw-r--r-- | noatun/modules/kjofol-skin/kjseeker.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/audiocd/plugins/flac/encoderflac.cpp b/kioslave/audiocd/plugins/flac/encoderflac.cpp index fd98f8b4..6b71d515 100644 --- a/kioslave/audiocd/plugins/flac/encoderflac.cpp +++ b/kioslave/audiocd/plugins/flac/encoderflac.cpp @@ -53,9 +53,9 @@ public: }; #ifdef LEGACY_FLAC -static FLAC__StreamEncoderWritetqStatus WriteCallback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data) +static FLAC__StreamEncoderWriteStatus WriteCallback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data) #else -static FLAC__StreamEncoderWritetqStatus WriteCallback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) +static FLAC__StreamEncoderWriteStatus WriteCallback(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) #endif { EncoderFLAC::Private *d = (EncoderFLAC::Private*)client_data; diff --git a/noatun/modules/kjofol-skin/kjseeker.cpp b/noatun/modules/kjofol-skin/kjseeker.cpp index 0d30e506..24fc2da1 100644 --- a/noatun/modules/kjofol-skin/kjseeker.cpp +++ b/noatun/modules/kjofol-skin/kjseeker.cpp @@ -92,7 +92,7 @@ KJSeeker::KJSeeker(const TQStringList &i, KJLoader *l) : KJWidget(l), g(0) TQPixmap px=tqparent()->pixmap(parser()["backgroundimage"][1]); bitBlt(barmode[0], 0, 0, &px, x, y, xs, ys, TQt::CopyROP); px.convertFromImage(transtqmask); - barModeMask=TQBitmap(px); + barModeMask=px; // kdDebug(66666) << "END KJSeeker constructor" << endl; } |