diff options
Diffstat (limited to 'src/corelib/kernel')
| -rw-r--r-- | src/corelib/kernel/qcoreevent.cpp | 3 | ||||
| -rw-r--r-- | src/corelib/kernel/qtimer.cpp | 4 | ||||
| -rw-r--r-- | src/corelib/kernel/qvariant.cpp | 6 |
3 files changed, 5 insertions, 8 deletions
diff --git a/src/corelib/kernel/qcoreevent.cpp b/src/corelib/kernel/qcoreevent.cpp index ab015a4b090..1e3f8a2feea 100644 --- a/src/corelib/kernel/qcoreevent.cpp +++ b/src/corelib/kernel/qcoreevent.cpp @@ -323,8 +323,7 @@ QEvent &QEvent::operator=(const QEvent &other) } /*! - Destroys the event. If it was \link - QCoreApplication::postEvent() posted \endlink, + Destroys the event. If it was \l{QCoreApplication::postEvent()}{posted}, it will be removed from the list of events to be posted. */ diff --git a/src/corelib/kernel/qtimer.cpp b/src/corelib/kernel/qtimer.cpp index 23e1826006d..cef9dd98153 100644 --- a/src/corelib/kernel/qtimer.cpp +++ b/src/corelib/kernel/qtimer.cpp @@ -300,7 +300,7 @@ QT_END_INCLUDE_NAMESPACE This static function calls a slot after a given time interval. It is very convenient to use this function because you do not need - to bother with a \link QObject::timerEvent() timerEvent\endlink or + to bother with a \l{QObject::timerEvent()}{timerEvent} or create a local QTimer object. Example: @@ -328,7 +328,7 @@ void QTimer::singleShot(int msec, QObject *receiver, const char *member) This static function calls a slot after a given time interval. It is very convenient to use this function because you do not need - to bother with a \link QObject::timerEvent() timerEvent\endlink or + to bother with a \l{QObject::timerEvent()}{timerEvent} or create a local QTimer object. The \a receiver is the receiving object and the \a member is the slot. The diff --git a/src/corelib/kernel/qvariant.cpp b/src/corelib/kernel/qvariant.cpp index 3d3386027a9..ffc86349128 100644 --- a/src/corelib/kernel/qvariant.cpp +++ b/src/corelib/kernel/qvariant.cpp @@ -1769,8 +1769,7 @@ void QVariant::save(QDataStream &s) const Reads a variant \a p from the stream \a s. - \sa \link datastreamformat.html Format of the QDataStream - operators \endlink + \sa{Serializing Qt Data Types}{Format of the QDataStream operators} */ QDataStream& operator>>(QDataStream &s, QVariant &p) { @@ -1781,8 +1780,7 @@ QDataStream& operator>>(QDataStream &s, QVariant &p) /*! Writes a variant \a p to the stream \a s. - \sa \link datastreamformat.html Format of the QDataStream - operators \endlink + \sa{Serializing Qt Data Types}{Format of the QDataStream operators} */ QDataStream& operator<<(QDataStream &s, const QVariant &p) { |
