diff options
Diffstat (limited to 'lib/store')
-rw-r--r-- | lib/store/KoStoreDevice.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/store/KoStoreDevice.h b/lib/store/KoStoreDevice.h index 9d62b21c..1f257dc9 100644 --- a/lib/store/KoStoreDevice.h +++ b/lib/store/KoStoreDevice.h @@ -46,11 +46,7 @@ public: void close() { } void flush() { } -#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 @@ -62,11 +58,6 @@ public: // Not virtual, only to uncover shadow TQ_LONG writeBlock( const TQByteArray& data ) { return TQIODevice::writeBlock( data ); } -#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 - int getch() { char c[2]; if ( m_store->read(c, 1) == -1) |