From 58ba7dc8a05353294e1530e1a94de7c9f130a845 Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Wed, 19 May 2010 13:36:39 +0200 Subject: doc: Fixed many broken links. --- src/corelib/io/qprocess.cpp | 4 ++-- src/corelib/tools/qchar.cpp | 4 ++-- src/corelib/tools/qdatetime.cpp | 12 ++++++------ src/corelib/tools/qeasingcurve.cpp | 4 ++-- src/corelib/tools/qhash.cpp | 4 ++-- src/corelib/tools/qpair.qdoc | 4 ++-- src/corelib/tools/qpoint.cpp | 8 ++++---- src/corelib/tools/qregexp.cpp | 4 ++-- src/corelib/tools/qsize.cpp | 8 ++++---- src/corelib/tools/qstring.cpp | 4 ++-- src/gui/graphicsview/qgraphicsitemanimation.cpp | 2 +- src/gui/graphicsview/qgraphicslayoutitem.cpp | 2 +- src/gui/graphicsview/qgraphicsscene.cpp | 2 +- src/gui/kernel/qcursor.cpp | 4 ++-- src/gui/painting/qcolor.cpp | 6 +++--- src/gui/painting/qmatrix.cpp | 8 ++++---- src/gui/painting/qpainterpath.cpp | 4 ++-- src/gui/painting/qpolygon.cpp | 8 ++++---- src/network/access/qabstractnetworkcache.cpp | 4 ++-- src/network/kernel/qhostaddress.cpp | 4 ++-- 20 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp index 7725ca8..b5e7a97 100644 --- a/src/corelib/io/qprocess.cpp +++ b/src/corelib/io/qprocess.cpp @@ -2022,7 +2022,7 @@ void QProcess::start(const QString &program, OpenMode mode) \note Terminating running processes from other processes will typically cause a panic in Symbian due to platform security. - \sa \l {Symbian Platform Security Requirements} + \sa {Symbian Platform Security Requirements} \sa kill() */ void QProcess::terminate() @@ -2040,7 +2040,7 @@ void QProcess::terminate() On Symbian, this function requires platform security capability \c PowerMgmt. If absent, the process will panic with KERN-EXEC 46. - \sa \l {Symbian Platform Security Requirements} + \sa {Symbian Platform Security Requirements} \sa terminate() */ void QProcess::kill() diff --git a/src/corelib/tools/qchar.cpp b/src/corelib/tools/qchar.cpp index 2f09b0e..ddb1516 100644 --- a/src/corelib/tools/qchar.cpp +++ b/src/corelib/tools/qchar.cpp @@ -1333,7 +1333,7 @@ QChar QChar::fromAscii(char c) Writes the char \a chr to the stream \a out. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QChar &chr) { @@ -1346,7 +1346,7 @@ QDataStream &operator<<(QDataStream &out, const QChar &chr) Reads a char from the stream \a in into char \a chr. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QChar &chr) { diff --git a/src/corelib/tools/qdatetime.cpp b/src/corelib/tools/qdatetime.cpp index 9f5d8c6..14b4a26 100644 --- a/src/corelib/tools/qdatetime.cpp +++ b/src/corelib/tools/qdatetime.cpp @@ -3573,7 +3573,7 @@ void QDateTime::detach() Writes the \a date to stream \a out. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QDate &date) @@ -3586,7 +3586,7 @@ QDataStream &operator<<(QDataStream &out, const QDate &date) Reads a date from stream \a in into the \a date. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QDate &date) @@ -3602,7 +3602,7 @@ QDataStream &operator>>(QDataStream &in, QDate &date) Writes \a time to stream \a out. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QTime &time) @@ -3615,7 +3615,7 @@ QDataStream &operator<<(QDataStream &out, const QTime &time) Reads a time from stream \a in into the given \a time. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QTime &time) @@ -3631,7 +3631,7 @@ QDataStream &operator>>(QDataStream &in, QTime &time) Writes \a dateTime to the \a out stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QDateTime &dateTime) { @@ -3646,7 +3646,7 @@ QDataStream &operator<<(QDataStream &out, const QDateTime &dateTime) Reads a datetime from the stream \a in into \a dateTime. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QDateTime &dateTime) diff --git a/src/corelib/tools/qeasingcurve.cpp b/src/corelib/tools/qeasingcurve.cpp index 8fab963..1734b03 100644 --- a/src/corelib/tools/qeasingcurve.cpp +++ b/src/corelib/tools/qeasingcurve.cpp @@ -859,7 +859,7 @@ QDebug operator<<(QDebug debug, const QEasingCurve &item) Writes the given \a easing curve 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 QEasingCurve &easing) @@ -884,7 +884,7 @@ QDataStream &operator<<(QDataStream &stream, const QEasingCurve &easing) Reads an easing curve from the given \a stream into the given \a easing curve and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QEasingCurve &easing) diff --git a/src/corelib/tools/qhash.cpp b/src/corelib/tools/qhash.cpp index 85a8b63..2971c06 100644 --- a/src/corelib/tools/qhash.cpp +++ b/src/corelib/tools/qhash.cpp @@ -1666,7 +1666,7 @@ void QHashData::checkSanity() This function requires the key and value types to implement \c operator<<(). - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ /*! \fn QDataStream &operator>>(QDataStream &in, QHash &hash) @@ -1677,7 +1677,7 @@ void QHashData::checkSanity() This function requires the key and value types to implement \c operator>>(). - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ /*! \class QMultiHash diff --git a/src/corelib/tools/qpair.qdoc b/src/corelib/tools/qpair.qdoc index c9cbb29..34c43ed 100644 --- a/src/corelib/tools/qpair.qdoc +++ b/src/corelib/tools/qpair.qdoc @@ -214,7 +214,7 @@ This function requires the T1 and T2 types to implement \c operator>>(). - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ /*! \fn QDataStream &operator<<(QDataStream &out, const QPair &pair) @@ -225,5 +225,5 @@ This function requires the T1 and T2 types to implement \c operator<<(). - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ diff --git a/src/corelib/tools/qpoint.cpp b/src/corelib/tools/qpoint.cpp index 9850ee7..66f06e9 100644 --- a/src/corelib/tools/qpoint.cpp +++ b/src/corelib/tools/qpoint.cpp @@ -306,7 +306,7 @@ QT_BEGIN_NAMESPACE Writes the given \a point 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 &s, const QPoint &p) @@ -325,7 +325,7 @@ QDataStream &operator<<(QDataStream &s, const QPoint &p) Reads a point from the given \a stream into the given \a point and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPoint &p) @@ -647,7 +647,7 @@ qreal QPointF::manhattanLength() const Writes the given \a point 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 &s, const QPointF &p) @@ -663,7 +663,7 @@ QDataStream &operator<<(QDataStream &s, const QPointF &p) Reads a point from the given \a stream into the given \a point and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPointF &p) diff --git a/src/corelib/tools/qregexp.cpp b/src/corelib/tools/qregexp.cpp index eb104a8..36827d0 100644 --- a/src/corelib/tools/qregexp.cpp +++ b/src/corelib/tools/qregexp.cpp @@ -4459,7 +4459,7 @@ QString QRegExp::escape(const QString &str) Writes the regular expression \a regExp to stream \a out. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QRegExp ®Exp) { @@ -4473,7 +4473,7 @@ QDataStream &operator<<(QDataStream &out, const QRegExp ®Exp) Reads a regular expression from stream \a in into \a regExp. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QRegExp ®Exp) { diff --git a/src/corelib/tools/qsize.cpp b/src/corelib/tools/qsize.cpp index f85a0c3..20ac344 100644 --- a/src/corelib/tools/qsize.cpp +++ b/src/corelib/tools/qsize.cpp @@ -380,7 +380,7 @@ void QSize::scale(const QSize &s, Qt::AspectRatioMode mode) Writes the given \a size 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 &s, const QSize &sz) @@ -399,7 +399,7 @@ QDataStream &operator<<(QDataStream &s, const QSize &sz) Reads a size from the given \a stream into the given \a size, and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QSize &sz) @@ -784,7 +784,7 @@ void QSizeF::scale(const QSizeF &s, Qt::AspectRatioMode mode) Writes the given \a size 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 &s, const QSizeF &sz) @@ -800,7 +800,7 @@ QDataStream &operator<<(QDataStream &s, const QSizeF &sz) Reads a size from the given \a stream into the given \a size and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QSizeF &sz) diff --git a/src/corelib/tools/qstring.cpp b/src/corelib/tools/qstring.cpp index 0169b20..612c492 100644 --- a/src/corelib/tools/qstring.cpp +++ b/src/corelib/tools/qstring.cpp @@ -7385,7 +7385,7 @@ QString &QString::setRawData(const QChar *unicode, int size) Writes the given \a string to the specified \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QString &str) @@ -7433,7 +7433,7 @@ QDataStream &operator<<(QDataStream &out, const QString &str) Reads a string from the specified \a stream into the given \a string. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QString &str) diff --git a/src/gui/graphicsview/qgraphicsitemanimation.cpp b/src/gui/graphicsview/qgraphicsitemanimation.cpp index 839c4ee..9cb9a8d 100644 --- a/src/gui/graphicsview/qgraphicsitemanimation.cpp +++ b/src/gui/graphicsview/qgraphicsitemanimation.cpp @@ -77,7 +77,7 @@ so scheduling several transformations of the same kind (e.g., rotations) at the same step is not recommended. - \sa QTimeLine, {The Graphics View Framework} + \sa QTimeLine, {Graphics View Framework} */ #include "qgraphicsitemanimation.h" diff --git a/src/gui/graphicsview/qgraphicslayoutitem.cpp b/src/gui/graphicsview/qgraphicslayoutitem.cpp index 9f9a39d..5a7f1af 100644 --- a/src/gui/graphicsview/qgraphicslayoutitem.cpp +++ b/src/gui/graphicsview/qgraphicslayoutitem.cpp @@ -322,7 +322,7 @@ void QGraphicsLayoutItemPrivate::setSizeComponent( layout, or false otherwise. Qt uses QGraphicsLayoutItem to provide layout functionality in the - \l{The Graphics View Framework}, but in the future its use may spread + \l{Graphics View Framework}, but in the future its use may spread throughout Qt itself. \sa QGraphicsWidget, QGraphicsLayout, QGraphicsLinearLayout, diff --git a/src/gui/graphicsview/qgraphicsscene.cpp b/src/gui/graphicsview/qgraphicsscene.cpp index b7e2fda..4b09a7e 100644 --- a/src/gui/graphicsview/qgraphicsscene.cpp +++ b/src/gui/graphicsview/qgraphicsscene.cpp @@ -50,7 +50,7 @@ The class serves as a container for QGraphicsItems. It is used together with QGraphicsView for visualizing graphical items, such as lines, rectangles, text, or even custom items, on a 2D surface. QGraphicsScene is - part of \l{The Graphics View Framework}. + part of the \l{Graphics View Framework}. QGraphicsScene also provides functionality that lets you efficiently determine both the location of items, and for determining what items are diff --git a/src/gui/kernel/qcursor.cpp b/src/gui/kernel/qcursor.cpp index ae1f60d..5b58984 100644 --- a/src/gui/kernel/qcursor.cpp +++ b/src/gui/kernel/qcursor.cpp @@ -229,7 +229,7 @@ QT_BEGIN_NAMESPACE Writes the \a cursor to the \a stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &s, const QCursor &c) @@ -256,7 +256,7 @@ QDataStream &operator<<(QDataStream &s, const QCursor &c) Reads the \a cursor from the \a stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QCursor &c) diff --git a/src/gui/painting/qcolor.cpp b/src/gui/painting/qcolor.cpp index 08d5572..37d7fa3 100644 --- a/src/gui/painting/qcolor.cpp +++ b/src/gui/painting/qcolor.cpp @@ -133,7 +133,7 @@ QT_BEGIN_NAMESPACE QColor is platform and device independent. The QColormap class maps the color to the hardware. - For more information about painting in general, see \l{The Paint + For more information about painting in general, see the \l{Paint System} documentation. \tableofcontents @@ -2523,7 +2523,7 @@ QDebug operator<<(QDebug dbg, const QColor &c) Writes the \a color to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &stream, const QColor &color) { @@ -2559,7 +2559,7 @@ QDataStream &operator<<(QDataStream &stream, const QColor &color) Reads the \a color from the \a stream. - \sa { Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &stream, QColor &color) { diff --git a/src/gui/painting/qmatrix.cpp b/src/gui/painting/qmatrix.cpp index 00f32f7..7746316 100644 --- a/src/gui/painting/qmatrix.cpp +++ b/src/gui/painting/qmatrix.cpp @@ -103,7 +103,7 @@ QT_BEGIN_NAMESPACE coordinate system. The standard coordinate system of a QPaintDevice has its origin located at the top-left position. The \e x values increase to the right; \e y values increase - downward. For a complete description, see the \l {The Coordinate + downward. For a complete description, see the \l {Coordinate System}{coordinate system} documentation. QPainter has functions to translate, scale, shear and rotate the @@ -176,7 +176,7 @@ QT_BEGIN_NAMESPACE \snippet doc/src/snippets/matrix/matrix.cpp 2 \endtable - \sa QPainter, QTransform, {The Coordinate System}, + \sa QPainter, QTransform, {Coordinate System}, {demos/affine}{Affine Transformations Demo}, {Transformations Example} */ @@ -1135,7 +1135,7 @@ Q_GUI_EXPORT QPainterPath operator *(const QPainterPath &p, const QMatrix &m) Writes the given \a matrix 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 &s, const QMatrix &m) @@ -1161,7 +1161,7 @@ QDataStream &operator<<(QDataStream &s, const QMatrix &m) Reads the given \a matrix from 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 &s, QMatrix &m) diff --git a/src/gui/painting/qpainterpath.cpp b/src/gui/painting/qpainterpath.cpp index f5a698e..ffd0d5c 100644 --- a/src/gui/painting/qpainterpath.cpp +++ b/src/gui/painting/qpainterpath.cpp @@ -2307,7 +2307,7 @@ QPainterPath &QPainterPath::operator-=(const QPainterPath &other) Writes the given painter \a path to the given \a stream, and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &s, const QPainterPath &p) { @@ -2334,7 +2334,7 @@ QDataStream &operator<<(QDataStream &s, const QPainterPath &p) Reads a painter path from the given \a stream into the specified \a path, and returns a reference to the \a stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPainterPath &p) { diff --git a/src/gui/painting/qpolygon.cpp b/src/gui/painting/qpolygon.cpp index b68314f..2fb52b5 100644 --- a/src/gui/painting/qpolygon.cpp +++ b/src/gui/painting/qpolygon.cpp @@ -719,7 +719,7 @@ QPolygon::operator QVariant() const Writes the given \a polygon 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 &s, const QPolygon &a) { @@ -735,7 +735,7 @@ QDataStream &operator<<(QDataStream &s, const QPolygon &a) Reads a polygon from the given \a stream into the given \a polygon, and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPolygon &a) { @@ -755,7 +755,7 @@ QDataStream &operator>>(QDataStream &s, QPolygon &a) Writes the given \a polygon 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 &s, const QPolygonF &a) @@ -776,7 +776,7 @@ QDataStream &operator<<(QDataStream &s, const QPolygonF &a) Reads a polygon from the given \a stream into the given \a polygon, and returns a reference to the stream. - \sa {Format of the QDataStream Operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &s, QPolygonF &a) diff --git a/src/network/access/qabstractnetworkcache.cpp b/src/network/access/qabstractnetworkcache.cpp index f091714..0f0ef9c 100644 --- a/src/network/access/qabstractnetworkcache.cpp +++ b/src/network/access/qabstractnetworkcache.cpp @@ -312,7 +312,7 @@ void QNetworkCacheMetaData::setAttributes(const AttributesMap &attributes) Writes \a metaData to the \a out stream. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator<<(QDataStream &out, const QNetworkCacheMetaData &metaData) { @@ -350,7 +350,7 @@ void QNetworkCacheMetaDataPrivate::save(QDataStream &out, const QNetworkCacheMet Reads a QNetworkCacheMetaData from the stream \a in into \a metaData. - \sa {Format of the QDataStream operators} + \sa {Serializing Qt Data Types} */ QDataStream &operator>>(QDataStream &in, QNetworkCacheMetaData &metaData) { diff --git a/src/network/kernel/qhostaddress.cpp b/src/network/kernel/qhostaddress.cpp index 2852d30..5ae3acc 100644 --- a/src/network/kernel/qhostaddress.cpp +++ b/src/network/kernel/qhostaddress.cpp @@ -1097,7 +1097,7 @@ uint qHash(const QHostAddress &key) Writes host address \a address 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 QHostAddress &address) { @@ -1127,7 +1127,7 @@ QDataStream &operator<<(QDataStream &out, const QHostAddress &address) Reads a host address into \a address 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, QHostAddress &address) { -- cgit v0.12