diff options
Diffstat (limited to 'qtinterface/interface_tqt3/tqiodevice.cpp')
-rw-r--r-- | qtinterface/interface_tqt3/tqiodevice.cpp | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/qtinterface/interface_tqt3/tqiodevice.cpp b/qtinterface/interface_tqt3/tqiodevice.cpp index 2532eef..7fef98b 100644 --- a/qtinterface/interface_tqt3/tqiodevice.cpp +++ b/qtinterface/interface_tqt3/tqiodevice.cpp @@ -21,50 +21,3 @@ Boston, MA 02110-1301, USA. #include <tqt.h> #include <ntqiodevice.h> - -#ifdef USE_QT4 - -void QIODevice::setState( int s ) { - if (s == IO_Open) { - if (isOpen() == false) { - open(openMode()); - } - } -} - -void QIODevice::setFlags( int f ) { - setOpenMode((OpenMode)f); -} - -void QIODevice::setStatus( int s ) { - #warning "QIODevice::setStatus is unimplemented!" -} - -// TQIODevice::TQIODevice() : QIODevice() {} -// -// qint64 TQIODevice::readData(char *data, qint64 maxlen) { -// return read(data, maxlen); -// } -// -// qint64 TQIODevice::writeData(const char *data, qint64 len) { -// return write(data, len); -// } - -// qint64 QIODevice::readData(char *data, qint64 maxlen) { -// return read(data, maxlen); -// } -// -// qint64 QIODevice::writeData(const char *data, qint64 len) { -// return write(data, len); -// } - -qint64 QIODevice::readLine(QString & s, qint64 maxlen) { - qint64 ret; - QByteArray q; - - readLine(q.data(), maxlen); - s.setAscii(q); - return ret; -} - -#endif // USE_QT4 |