Drop USE_TQT4 code

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c19b14663d)
r14.1.x
Michele Calgaro 8 months ago
parent eb0f6cbe60
commit 04086637d9
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -155,11 +155,7 @@ void K3bFileSplitter::flush()
d->file.flush();
}
#ifdef USE_QT4
qint64 K3bFileSplitter::size() const
#else // USE_QT4
TQIODevice::Offset K3bFileSplitter::size() const
#endif // USE_QT4
{
// not implemented due to Offset size limitations
return 0;

@ -63,11 +63,6 @@ class LIBK3B_EXPORT K3bFileSplitter : public TQIODevice
virtual void close();
#ifdef USE_QT4
inline qint64 readData ( char * data, qint64 maxSize ) { return readBlock(data, maxSize); }
inline qint64 writeData ( const char * data, qint64 maxSize ) { return writeBlock(data, maxSize); }
#endif // USE_QT4
/**
* File descriptor to read from and write to.
* Not implemented yet!
@ -79,11 +74,7 @@ class LIBK3B_EXPORT K3bFileSplitter : public TQIODevice
/**
* Not implemented
*/
#ifdef USE_QT4
virtual qint64 size() const;
#else // USE_QT4
virtual Offset size() const;
#endif // USE_QT4
/**
* Not implemented

@ -19,19 +19,7 @@
#include <tqfile.h>
#include <tqobject.h>
#ifdef Q_MOC_RUN
#define USE_QT4
#endif // Q_MOC_RUN
// MOC_SKIP_BEGIN
#ifdef USE_QT4
class K3bDebuggingOutputFile : public TQFile
#else // USE_QT4
// MOC_SKIP_END
class K3bDebuggingOutputFile : public TQObject, public TQFile
// MOC_SKIP_BEGIN
#endif // USE_QT4
// MOC_SKIP_END
{
TQ_OBJECT

@ -20,10 +20,6 @@
#include <config.h>
#endif
#ifdef Q_MOC_RUN
#define HAVE_MUSICBRAINZ
#endif // Q_MOC_RUN
#ifdef HAVE_MUSICBRAINZ
#include <k3bjob.h>

@ -46,16 +46,7 @@ public:
void close() { }
void flush() { }
#ifdef USE_QT4
inline qint64 readData ( char * data, qint64 maxSize ) { return readBlock(data, maxSize); }
inline qint64 writeData ( const char * data, qint64 maxSize ) { return writeBlock(data, maxSize); }
#endif // USE_QT4
#ifdef USE_QT4
qint64 size() const {
#else // USE_QT4
Offset size() const {
#endif // USE_QT4
if ( m_store->mode() == KoStore::Read )
return m_store->size();
else

Loading…
Cancel
Save