Commit 95e4c95d28be9bc9d94685f7a13e36cbf57bf74e
- Diff rendering mode:
- inline
- side by side
doc/src/qmake-manual.qdoc
(3 / 2)
|   | |||
| 1037 | 1037 | (see \l{LibDepend}{Library Dependencies} for more info). | |
| 1038 | 1038 | \endtable | |
| 1039 | 1039 | ||
| 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. | ||
| 1042 | 1043 | ||
| 1043 | 1044 | On Windows (or if Qt is configured with \c{-debug_and_release}, adding the | |
| 1044 | 1045 | \c build_all option to the \c CONFIG variable makes this rule the default |
src/corelib/tools/qsharedpointer.cpp
(3 / 3)
|   | |||
| 342 | 342 | /*! | |
| 343 | 343 | \fn QSharedPointer<X> QSharedPointer::objectCast() const | |
| 344 | 344 | ||
| 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 | ||
| 346 | 346 | returns a QSharedPointer that shares the reference. If this | |
| 347 | 347 | function is used to up-cast, then QSharedPointer will perform a \tt | |
| 348 | 348 | qobject_cast, which means that if the object being pointed by this | |
| … | … | ||
| 739 | 739 | \relates QSharedPointer | |
| 740 | 740 | ||
| 741 | 741 | 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 | ||
| 743 | 743 | appropriate type. If the \tt qobject_cast fails, the object | |
| 744 | 744 | returned will be null. | |
| 745 | 745 | ||
| … | … | ||
| 756 | 756 | \relates QWeakPointer | |
| 757 | 757 | ||
| 758 | 758 | 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 | ||
| 760 | 760 | appropriate type. If the \tt qobject_cast fails, the object | |
| 761 | 761 | returned will be null. | |
| 762 | 762 |
src/dbus/qdbuserror.cpp
(9 / 1)
|   | |||
| 225 | 225 | \value UnknownInterface The interface is not known | |
| 226 | 226 | \value InternalError An internal error occurred | |
| 227 | 227 | (\c com.trolltech.QtDBus.Error.InternalError) | |
| 228 | \value UnknownObject The remote object could not be found. | ||
| 229 | 228 | ||
| 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. | ||
| 230 | 238 | */ | |
| 231 | 239 | ||
| 232 | 240 | /*! |
src/gui/kernel/qgesture.cpp
(7 / 0)
|   | |||
| 187 | 187 | ||
| 188 | 188 | \brief The current state of the gesture. | |
| 189 | 189 | */ | |
| 190 | |||
| 191 | /*! | ||
| 192 | Returns the gesture recognition state. | ||
| 193 | */ | ||
| 190 | 194 | Qt::GestureState QGesture::state() const | |
| 191 | 195 | { | |
| 192 | 196 | return d_func()->state; | |
| 193 | 197 | } | |
| 194 | 198 | ||
| 199 | /*! | ||
| 200 | Sets this gesture's recognition state to \a state. | ||
| 201 | */ | ||
| 195 | 202 | void QGesture::setState(Qt::GestureState state) | |
| 196 | 203 | { | |
| 197 | 204 | d_func()->state = state; |
Comments
Add a new comment:
Login or create an account to post a comment
Add your comment
Please log in to comment

