summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qmetaobject.cpp
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2012-08-15 06:37:01 +0100
committerQt by Nokia <qt-info@nokia.com>2012-08-15 11:38:37 +0200
commit98804946f289fe8ab866cc7bf3383a29057f9251 (patch)
treeada01afead223ec58579061ef3bb13771782149e /src/corelib/kernel/qmetaobject.cpp
parent121062d8848986dcfaf421388a5603b3b48a1e58 (diff)
Make the "\internal" qdoc command stand on its own line
The qdoc manual currently claims that the command must stand on its own line. The change follows the consistency with the rest and how the example looks like inside the qdoc manual for this command. Change-Id: I6b653dc95cf9d84e4adf32220dace5d313678419 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/corelib/kernel/qmetaobject.cpp')
-rw-r--r--src/corelib/kernel/qmetaobject.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/corelib/kernel/qmetaobject.cpp b/src/corelib/kernel/qmetaobject.cpp
index 90cebe2291..14ca6e1b3e 100644
--- a/src/corelib/kernel/qmetaobject.cpp
+++ b/src/corelib/kernel/qmetaobject.cpp
@@ -574,7 +574,8 @@ static bool methodMatch(const QMetaObject *m, int handle,
return true;
}
-/** \internal
+/**
+* \internal
* helper function for indexOf{Method,Slot,Signal}, returns the relative index of the method within
* the baseObject
* \a MethodType might be MethodSignal or MethodSlot, or 0 to match everything.
@@ -705,7 +706,8 @@ int QMetaObject::indexOfSignal(const char *signal) const
return i;
}
-/*! \internal
+/*!
+ \internal
Same as QMetaObject::indexOfSignal, but the result is the local offset to the base object.
\a baseObject will be adjusted to the enclosing QMetaObject, or 0 if the signal is not found
@@ -851,7 +853,8 @@ int QMetaObjectPrivate::signalIndex(const QMetaMethod &m)
return ((m.handle - priv(m.mobj->d.data)->methodData) / 5) + signalOffset(m.mobj);
}
-/*! \internal
+/*!
+ \internal
\since 5.0
Returns the signal for the given meta-object \a m at \a signal_index.
@@ -1861,7 +1864,9 @@ const char *QMetaMethod::tag() const
}
-/*! \internal */
+/*!
+ \internal
+ */
int QMetaMethod::attributes() const
{
if (!mobj)
@@ -1940,7 +1945,8 @@ QMetaMethod::MethodType QMetaMethod::methodType() const
\snippet code/src_corelib_kernel_qmetaobject.cpp 9
*/
-/*! \internal
+/*!
+ \internal
Implementation of the fromSignal() function.
@@ -3275,7 +3281,8 @@ const char* QMetaClassInfo::value() const
and \a data.
*/
-/*! \internal
+/*!
+ \internal
If the local_method_index is a cloned method, return the index of the original.
Example: if the index of "destroyed()" is passed, the index of "destroyed(QObject*)" is returned