summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qiodevice.cpp
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2011-07-19 14:42:08 +0200
committerQt by Nokia <qt-info@nokia.com>2011-07-21 08:54:07 +0200
commitff63d0f28c56af711b84967a5a4012f0359eb9e0 (patch)
tree931d7c2e10243ba7cd71ebab85d000e979f0daea /src/corelib/io/qiodevice.cpp
parentf5c4cbb6d4b6e0a3431d95a63af9747e549ea6a8 (diff)
Doc: Removed documentation for deleted code.
Change-Id: Icdbc05decac3dfe3fc18ce073c494e1fce4ea347 Reviewed-on: http://codereview.qt.nokia.com/1824 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: David Boddie
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)