diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-28 09:52:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-28 09:52:53 +0900 |
commit | 232924ecce3024442d69de3cc5eef83b4e99d852 (patch) | |
tree | 7f0c6f2fba1a3ff8a33bfcde29005cd2ae72869a /noatun-plugins | |
parent | 9f59252f1b1d8a5f0ab9df3850552385f61aee55 (diff) | |
download | tdeaddons-232924ecce3024442d69de3cc5eef83b4e99d852.tar.gz tdeaddons-232924ecce3024442d69de3cc5eef83b4e99d852.zip |
Drop USE_TQT4 code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun-plugins')
-rw-r--r-- | noatun-plugins/oblique/kbuffer.cpp | 4 | ||||
-rw-r--r-- | noatun-plugins/oblique/kbuffer.h | 9 |
2 files changed, 0 insertions, 13 deletions
diff --git a/noatun-plugins/oblique/kbuffer.cpp b/noatun-plugins/oblique/kbuffer.cpp index 6c08025..b7e5ae0 100644 --- a/noatun-plugins/oblique/kbuffer.cpp +++ b/noatun-plugins/oblique/kbuffer.cpp @@ -33,11 +33,7 @@ void TDEBuffer::flush(){ } /** query buffer size */ -#ifdef USE_QT4 -qint64 TDEBuffer::size() const { -#else // USE_QT4 TQ_ULONG TDEBuffer::size() const { -#endif // USE_QT4 return buf.size(); } diff --git a/noatun-plugins/oblique/kbuffer.h b/noatun-plugins/oblique/kbuffer.h index 18f9b3b..2971253 100644 --- a/noatun-plugins/oblique/kbuffer.h +++ b/noatun-plugins/oblique/kbuffer.h @@ -23,11 +23,7 @@ public: /** read in a block of memory */ TQ_LONG readBlock(char* data, long unsigned int maxLen); /** query buffer size */ -#ifdef USE_QT4 - qint64 size() const; -#else // USE_QT4 TQ_ULONG size() const; -#endif // USE_QT4 /** No descriptions */ void flush(); /** Close buffer */ @@ -45,11 +41,6 @@ public: return &buf[0]; } -#ifdef USE_QT4 - virtual inline qint64 readData ( char * data, qint64 maxSize ) { return readBlock(data, maxSize); } - virtual inline qint64 writeData ( const char * data, qint64 maxSize ) { return writeBlock(data, maxSize); } -#endif // USE_QT4 - private: std::vector<char> buf; std::vector<char>::iterator bufPos; |