mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-04 00:06:46 -05:00
Fix doxygen
This commit is contained in:
parent
fb7e2c8635
commit
119106520e
@ -42,9 +42,9 @@ 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
|
||||
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.
|
||||
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.
|
||||
|
||||
If ``extent`` is not ``None``, the locator will index only a subset of the layer which falls within that extent.
|
||||
%End
|
||||
|
||||
@ -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.
|
||||
*
|
||||
|
||||
@ -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
|
||||
|
||||
@ -51,4 +51,6 @@ class QgsPointLocatorInitTask : public QgsTask
|
||||
QgsPointLocator *mLoc = nullptr;
|
||||
};
|
||||
|
||||
/// @endcond
|
||||
|
||||
#endif // QGSPOINTLOCATORINITTASK_H
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user