Navigation Menu

Skip to content

Commit

Permalink
Fix doxygen command order
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 22, 2020
1 parent 13ba801 commit 6bd2b79
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions external/mdal/api/mdal.h
Expand Up @@ -234,10 +234,10 @@ MDAL_EXPORT void MDAL_CloseMesh( MDAL_MeshH mesh );
/**
* Creates a empty mesh in memory
*
* \since MDAL 0.7
*
* \note the mesh is editable (vertices and faces can be added, see MDAL_M_addVertices() and MDAL_M_addFaces()),
* and can be saved with MDAL_SaveMesh()
*
* \since MDAL 0.7
*/
MDAL_EXPORT MDAL_MeshH MDAL_CreateMesh( MDAL_DriverH driver );

Expand Down
Expand Up @@ -532,18 +532,18 @@ Raises a QgsProviderConnectionException if any errors are encountered.
the default implementation creates a temporary vector layer, providers may
choose to override this method for a greater efficiency.

.. versionadded:: 3.16

:raises :: py:class:`QgsProviderConnectionException`

.. versionadded:: 3.16
%End

virtual QList< QgsVectorDataProvider::NativeType > nativeTypes() const throw( QgsProviderConnectionException ) = 0;
%Docstring
Returns a list of native types supported by the connection.

.. versionadded:: 3.16

:raises :: py:class:`QgsProviderConnectionException`

.. versionadded:: 3.16
%End

QString providerKey() const;
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsmaptoolselectutils.h
Expand Up @@ -74,8 +74,8 @@ namespace QgsMapToolSelectUtils
* must be in terms of the canvas coordinate system.
* \param modifiers Keyboard modifiers are used to determine the current selection
* operations (add, subtract, contains)
* \since QGIS 2.16
* \see selectSingleFeature()
* \since QGIS 2.16
*/
void selectMultipleFeatures( QgsMapCanvas *canvas, const QgsGeometry &selectGeometry, Qt::KeyboardModifiers modifiers );

Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsabstractdatabaseproviderconnection.h
Expand Up @@ -552,15 +552,15 @@ class CORE_EXPORT QgsAbstractDatabaseProviderConnection : public QgsAbstractProv
* Raises a QgsProviderConnectionException if any errors are encountered.
* \note the default implementation creates a temporary vector layer, providers may
* choose to override this method for a greater efficiency.
* \since QGIS 3.16
* \throws QgsProviderConnectionException
* \since QGIS 3.16
*/
virtual QgsFields fields( const QString &schema, const QString &table ) const SIP_THROW( QgsProviderConnectionException );

/**
* Returns a list of native types supported by the connection.
* \since QGIS 3.16
* \throws QgsProviderConnectionException
* \since QGIS 3.16
*/
virtual QList< QgsVectorDataProvider::NativeType > nativeTypes() const SIP_THROW( QgsProviderConnectionException ) = 0;

Expand Down
4 changes: 2 additions & 2 deletions src/core/qgssqliteutils.h
Expand Up @@ -208,8 +208,8 @@ class CORE_EXPORT QgsSqliteUtils
* are not returned.
* \note the implementation is the same of GDAL but the test coverage is much
* better in GDAL.
* \since QGIS 3.14
* \note not available in Python bindings
* \since QGIS 3.14
*/
static QSet<QString> uniqueFields( sqlite3 *connection, const QString &tableName, QString &errorMessage ) SIP_SKIP;

Expand All @@ -219,8 +219,8 @@ class CORE_EXPORT QgsSqliteUtils
* error message in case of errors.
*
* \returns the next sequence value or -1 case of errors
* \since QGIS 3.14
* \note not available in Python bindings
* \since QGIS 3.14
*/
static long long nextSequenceValue( sqlite3 *connection, const QString &tableName, QString errorMessage ) SIP_SKIP;

Expand Down

0 comments on commit 6bd2b79

Please sign in to comment.