[doxygen] \see must be placed after params

This commit is contained in:
Denis Rouzaud 2017-12-05 21:50:51 -04:00
parent e48cf98edb
commit ed5076201a
2 changed files with 4 additions and 4 deletions

View File

@ -738,19 +738,19 @@ The display name of the Authentication Manager
void messageOut( const QString &message, const QString &tag = QgsAuthManager::AUTH_MAN_TAG, QgsAuthManager::MessageLevel level = QgsAuthManager::INFO ) const;
%Docstring
Custom logging signal to relay to console output and QgsMessageLog
.. seealso:: :py:class:`QgsMessageLog`
\param message Message to send
\param tag Associated tag (title)
\param level Message log level
.. seealso:: :py:class:`QgsMessageLog`
%End
void passwordHelperMessageOut( const QString &message, const QString &tag = QgsAuthManager::AUTH_MAN_TAG, QgsAuthManager::MessageLevel level = QgsAuthManager::INFO );
%Docstring
Custom logging signal to inform the user about master password <-> password manager interactions
@see QgsMessageLog
\param message Message to send
\param tag Associated tag (title)
\param level Message log level
.. seealso:: :py:class:`QgsMessageLog`
%End

View File

@ -691,19 +691,19 @@ class CORE_EXPORT QgsAuthManager : public QObject
/**
* Custom logging signal to relay to console output and QgsMessageLog
* \see QgsMessageLog
* \param message Message to send
* \param tag Associated tag (title)
* \param level Message log level
* \see QgsMessageLog
*/
void messageOut( const QString &message, const QString &tag = QgsAuthManager::AUTH_MAN_TAG, QgsAuthManager::MessageLevel level = QgsAuthManager::INFO ) const;
/**
* Custom logging signal to inform the user about master password <-> password manager interactions
* @see QgsMessageLog
* \param message Message to send
* \param tag Associated tag (title)
* \param level Message log level
* \see QgsMessageLog
*/
void passwordHelperMessageOut( const QString &message, const QString &tag = QgsAuthManager::AUTH_MAN_TAG, QgsAuthManager::MessageLevel level = QgsAuthManager::INFO );