diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-05-19 10:34:56 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-05-19 10:34:56 (GMT) |
commit | 397a0b223aa4e88ce7985e7721a2b08ba7335cac (patch) | |
tree | 4eb7892833ea92c7d8fa1dd6fcf2a8b8399ea4e5 /src/corelib/tools | |
parent | 748e746006a1929a6ec2511481a0dd101b4eef54 (diff) | |
download | Qt-397a0b223aa4e88ce7985e7721a2b08ba7335cac.zip Qt-397a0b223aa4e88ce7985e7721a2b08ba7335cac.tar.gz Qt-397a0b223aa4e88ce7985e7721a2b08ba7335cac.tar.bz2 |
doc: Fixed many broken links.
Diffstat (limited to 'src/corelib/tools')
-rw-r--r-- | src/corelib/tools/qbytearray.cpp | 4 | ||||
-rw-r--r-- | src/corelib/tools/qline.cpp | 8 | ||||
-rw-r--r-- | src/corelib/tools/qstringlist.cpp | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp index 29a7263..05d38f6 100644 --- a/src/corelib/tools/qbytearray.cpp +++ b/src/corelib/tools/qbytearray.cpp @@ -2681,7 +2681,7 @@ void QByteArray::clear() Writes byte array \a ba to the stream \a out and returns a reference to the stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QByteArray &ba) @@ -2698,7 +2698,7 @@ QDataStream &operator<<(QDataStream &out, const QByteArray &ba) Reads a byte array into \a ba from the stream \a in and returns a reference to the stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QByteArray &ba) diff --git a/src/corelib/tools/qline.cpp b/src/corelib/tools/qline.cpp index 7275a96..babc1d8 100644 --- a/src/corelib/tools/qline.cpp +++ b/src/corelib/tools/qline.cpp @@ -272,7 +272,7 @@ QDebug operator<<(QDebug d, const QLine &p) Writes the given \a line to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QLine &line) @@ -287,7 +287,7 @@ QDataStream &operator<<(QDataStream &stream, const QLine &line) Reads a line from the given \a stream into the given \a line and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QLine &line) @@ -834,7 +834,7 @@ QDebug operator<<(QDebug d, const QLineF &p) Writes the given \a line to the given \a stream and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QLineF &line) @@ -849,7 +849,7 @@ QDataStream &operator<<(QDataStream &stream, const QLineF &line) Reads a line from the given \a stream into the given \a line and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QLineF &line) diff --git a/src/corelib/tools/qstringlist.cpp b/src/corelib/tools/qstringlist.cpp index 32a0b1e..82a46d4 100644 --- a/src/corelib/tools/qstringlist.cpp +++ b/src/corelib/tools/qstringlist.cpp @@ -460,7 +460,7 @@ QString QtPrivate::QStringList_join(const QStringList *that, const QString &sep) Reads a string list from the given \a in stream into the specified \a list. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ /*! @@ -469,7 +469,7 @@ QString QtPrivate::QStringList_join(const QStringList *that, const QString &sep) Writes the given string \a list to the specified \a out stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ #endif // QT_NO_DATASTREAM |