summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2012-05-11 01:38:45 +0100
committerQt by Nokia <qt-info@nokia.com>2012-05-29 11:35:21 +0200
commit2c49ea852f7893faae59bbdb59e2806002f0a017 (patch)
tree215abada3efeaf7a5d2137f87c5bc1ac5009bf34 /src/corelib/kernel
parentdd3e4f1dbe868a8524ac199af838bb5f48d8bb9d (diff)
QtCore: remove \link usages
Change-Id: I0de764b51a972de0b6eb2bf3c04d2b190f581f52 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r--src/corelib/kernel/qcoreevent.cpp3
-rw-r--r--src/corelib/kernel/qtimer.cpp4
-rw-r--r--src/corelib/kernel/qvariant.cpp6
3 files changed, 5 insertions, 8 deletions
diff --git a/src/corelib/kernel/qcoreevent.cpp b/src/corelib/kernel/qcoreevent.cpp
index ab015a4b09..1e3f8a2fee 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 23e1826006..cef9dd9815 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 3d3386027a..ffc8634912 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)
{