Fix doxygen

This commit is contained in:
Julien Cabieces 2019-09-03 16:46:40 +02:00
parent fb7e2c8635
commit 119106520e
4 changed files with 10 additions and 4 deletions

View File

@ -42,7 +42,7 @@ do the searches on data reprojected to the given CRS. For accurate reprojection
to set the correct ``transformContext`` if a ``destinationCrs`` is specified. This is usually taken
from the current :py:func:`QgsProject.transformContext()`
:param asynchronous: if ``False``, point locator init() method will block until point locator index
if ``asynchronous`` is ``False``, point locator init() method will block until point locator index
is completely built. if ``True``, index building will be done in another thread and init() method returns
immediately. initFinished() signal will be emitted once the initialization is over.

View File

@ -68,7 +68,7 @@ class CORE_EXPORT QgsPointLocator : public QObject
* to set the correct \a transformContext if a \a destinationCrs is specified. This is usually taken
* from the current QgsProject::transformContext().
*
* \param asynchronous if FALSE, point locator init() method will block until point locator index
* if \a asynchronous is FALSE, point locator init() method will block until point locator index
* is completely built. if TRUE, index building will be done in another thread and init() method returns
* immediately. initFinished() signal will be emitted once the initialization is over.
*

View File

@ -17,6 +17,8 @@
#include "qgsvectorlayer.h"
/// @cond PRIVATE
QgsPointLocatorInitTask::QgsPointLocatorInitTask( QgsPointLocator *loc )
: QgsTask( tr( "Indexing %1" ).arg( loc->layer()->id() ), QgsTask::Flags() )
, mLoc( loc )
@ -28,3 +30,5 @@ bool QgsPointLocatorInitTask::run()
emit rebuildIndexFinished( ok );
return true;
}
/// @endcond

View File

@ -51,4 +51,6 @@ class QgsPointLocatorInitTask : public QgsTask
QgsPointLocator *mLoc = nullptr;
};
/// @endcond
#endif // QGSPOINTLOCATORINITTASK_H