summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qiodevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qiodevice.cpp')
-rw-r--r--src/corelib/io/qiodevice.cpp140
1 files changed, 0 insertions, 140 deletions
diff --git a/src/corelib/io/qiodevice.cpp b/src/corelib/io/qiodevice.cpp
index 4371d9cbef..89987bc64a 100644
--- a/src/corelib/io/qiodevice.cpp
+++ b/src/corelib/io/qiodevice.cpp
@@ -243,21 +243,6 @@ QIODevicePrivate::~QIODevicePrivate()
*/
/*!
- \typedef QIODevice::Offset
- \compat
-
- Use \c qint64 instead.
-*/
-
-/*!
- \typedef QIODevice::Status
- \compat
-
- Use QIODevice::OpenMode instead, or see the documentation for
- specific devices.
-*/
-
-/*!
\enum QIODevice::OpenModeFlag
This enum is used with open() to describe the mode in which a device
@@ -1664,131 +1649,6 @@ QString QIODevice::errorString() const
\sa read() write()
*/
-/*!
- \fn QIODevice::Offset QIODevice::status() const
-
- For device specific error handling, please refer to the
- individual device documentation.
-
- \sa qobject_cast()
-*/
-
-/*!
- \fn QIODevice::Offset QIODevice::at() const
-
- Use pos() instead.
-*/
-
-/*!
- \fn bool QIODevice::at(Offset offset)
-
- Use seek(\a offset) instead.
-*/
-
-/*! \fn int QIODevice::flags() const
-
- Use openMode() instead.
-*/
-
-/*! \fn int QIODevice::getch()
-
- Use getChar() instead.
-*/
-
-/*!
- \fn bool QIODevice::isAsynchronous() const
-
- This functionality is no longer available. This function always
- returns true.
-*/
-
-/*!
- \fn bool QIODevice::isBuffered() const
-
- Use !(openMode() & QIODevice::Unbuffered) instead.
-*/
-
-/*!
- \fn bool QIODevice::isCombinedAccess() const
-
- Use openMode() instead.
-*/
-
-/*!
- \fn bool QIODevice::isDirectAccess() const
-
- Use !isSequential() instead.
-*/
-
-/*!
- \fn bool QIODevice::isInactive() const
-
- Use isOpen(), isReadable(), or isWritable() instead.
-*/
-
-/*!
- \fn bool QIODevice::isRaw() const
-
- Use openMode() instead.
-*/
-
-/*!
- \fn bool QIODevice::isSequentialAccess() const
-
- Use isSequential() instead.
-*/
-
-/*!
- \fn bool QIODevice::isSynchronous() const
-
- This functionality is no longer available. This function always
- returns false.
-*/
-
-/*!
- \fn bool QIODevice::isTranslated() const
-
- Use openMode() instead.
-*/
-
-/*!
- \fn bool QIODevice::mode() const
-
- Use openMode() instead.
-*/
-
-/*! \fn int QIODevice::putch(int ch)
-
- Use putChar(\a ch) instead.
-*/
-
-/*! \fn int QIODevice::ungetch(int ch)
-
- Use ungetChar(\a ch) instead.
-*/
-
-/*!
- \fn quint64 QIODevice::readBlock(char *data, quint64 size)
-
- Use read(\a data, \a size) instead.
-*/
-
-/*! \fn int QIODevice::state() const
-
- Use isOpen() instead.
-*/
-
-/*!
- \fn qint64 QIODevice::writeBlock(const char *data, quint64 size)
-
- Use write(\a data, \a size) instead.
-*/
-
-/*!
- \fn qint64 QIODevice::writeBlock(const QByteArray &data)
-
- Use write(\a data) instead.
-*/
#if !defined(QT_NO_DEBUG_STREAM)
QDebug operator<<(QDebug debug, QIODevice::OpenMode modes)