Commit 95e4c95d28be9bc9d94685f7a13e36cbf57bf74e

  • avatar
  • Martin Smith <msmith @trol…ech.com>
  • Fri Jul 03 08:08:25 GMT 2009
doc: Corrected several qdoc warnings.
doc/src/qmake-manual.qdoc
(3 / 2)
  
10371037 (see \l{LibDepend}{Library Dependencies} for more info).
10381038 \endtable
10391039
1040 Please note that \c create_prl is required when \i {building} a static library,
1041 while \c link_prl is required when \i {using} a static library.
1040 Please note that \c create_prl is required when \e {building} a
1041 static library, while \c link_prl is required when \e {using} a
1042 static library.
10421043
10431044 On Windows (or if Qt is configured with \c{-debug_and_release}, adding the
10441045 \c build_all option to the \c CONFIG variable makes this rule the default
src/corelib/tools/qsharedpointer.cpp
(3 / 3)
  
342342/*!
343343 \fn QSharedPointer<X> QSharedPointer::objectCast() const
344344
345 Performs a \ref qobject_cast from this pointer's type to \tt X and
345 Performs a \l qobject_cast() from this pointer's type to \tt X and
346346 returns a QSharedPointer that shares the reference. If this
347347 function is used to up-cast, then QSharedPointer will perform a \tt
348348 qobject_cast, which means that if the object being pointed by this
739739 \relates QSharedPointer
740740
741741 Returns a shared pointer to the pointer held by \a other, using a
742 \ref qobject_cast to type \tt X to obtain an internal pointer of the
742 \l qobject_cast() to type \tt X to obtain an internal pointer of the
743743 appropriate type. If the \tt qobject_cast fails, the object
744744 returned will be null.
745745
756756 \relates QWeakPointer
757757
758758 Returns a shared pointer to the pointer held by \a other, using a
759 \ref qobject_cast to type \tt X to obtain an internal pointer of the
759 \l qobject_cast() to type \tt X to obtain an internal pointer of the
760760 appropriate type. If the \tt qobject_cast fails, the object
761761 returned will be null.
762762
src/dbus/qdbuserror.cpp
(9 / 1)
  
225225 \value UnknownInterface The interface is not known
226226 \value InternalError An internal error occurred
227227 (\c com.trolltech.QtDBus.Error.InternalError)
228 \value UnknownObject The remote object could not be found.
229228
229 \value InvalidObjectPath The object path provided is invalid.
230
231 \value InvalidService The service requested is invalid.
232
233 \value InvalidMember The member is invalid.
234
235 \value InvalidInterface The interface is invalid.
236
237 \value UnknownObject The remote object could not be found.
230238*/
231239
232240/*!
src/gui/kernel/qgesture.cpp
(7 / 0)
  
187187
188188 \brief The current state of the gesture.
189189*/
190
191/*!
192 Returns the gesture recognition state.
193 */
190194Qt::GestureState QGesture::state() const
191195{
192196 return d_func()->state;
193197}
194198
199/*!
200 Sets this gesture's recognition state to \a state.
201 */
195202void QGesture::setState(Qt::GestureState state)
196203{
197204 d_func()->state = state;

Comments

Add a new comment:

Login or create an account to post a comment

Add your comment