diff options
author | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2011-07-15 17:05:50 -0300 |
---|---|---|
committer | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2011-07-15 17:50:39 -0300 |
commit | a40bcf749ee38cd886771f063d0387996cb9fb72 (patch) | |
tree | 473ee0b0cd3d5a826f034f720d921b2f8653d0cb /qt4 | |
parent | e1eee6779e6d0830ef4df911b004b4ceace2af52 (diff) |
ContactSearchChannel: Move signals docs to the bottom of the class implementation.
Diffstat (limited to 'qt4')
-rw-r--r-- | qt4/TelepathyQt4/contact-search-channel.cpp | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/qt4/TelepathyQt4/contact-search-channel.cpp b/qt4/TelepathyQt4/contact-search-channel.cpp index ba7c361aa..1fffe7567 100644 --- a/qt4/TelepathyQt4/contact-search-channel.cpp +++ b/qt4/TelepathyQt4/contact-search-channel.cpp @@ -561,31 +561,6 @@ void ContactSearchChannel::stopSearch() ContactSearchChannelPtr(this)); } -/** - * \fn void ContactSearchChannel::searchStateChanged(Tp::ChannelContactSearchState state, - * const QString &errorName, - * const Tp::ContactSearchChannel::SearchStateChangeDetails &details) - * - * Emitted when the value of searchState() changes. - * - * \param state The new state. - * \param errorName The name of the error if any. - * \param details The details for the state change. - * \sa searchState() - */ - -/** - * \fn void ContactSearchChannel::searchResultReceived( - * const Tp::ContactSearchChannel::SearchResult &result) - * - * Emitted when a result for a search is received. It can be emitted multiple times - * until the searchState() goes to #ChannelContactSearchStateCompleted or - * #ChannelContactSearchStateFailed. - * - * \param result The search result. - * \sa searchState() - */ - void ContactSearchChannel::gotProperties(QDBusPendingCallWatcher *watcher) { QDBusPendingReply<QVariantMap> reply = *watcher; @@ -673,4 +648,29 @@ void ContactSearchChannel::gotSearchResultContacts(PendingOperation *op) mPriv->processSignalsQueue(); } +/** + * \fn void ContactSearchChannel::searchStateChanged(Tp::ChannelContactSearchState state, + * const QString &errorName, + * const Tp::ContactSearchChannel::SearchStateChangeDetails &details) + * + * Emitted when the value of searchState() changes. + * + * \param state The new state. + * \param errorName The name of the error if any. + * \param details The details for the state change. + * \sa searchState() + */ + +/** + * \fn void ContactSearchChannel::searchResultReceived( + * const Tp::ContactSearchChannel::SearchResult &result) + * + * Emitted when a result for a search is received. It can be emitted multiple times + * until the searchState() goes to #ChannelContactSearchStateCompleted or + * #ChannelContactSearchStateFailed. + * + * \param result The search result. + * \sa searchState() + */ + } // Tp |