mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-01 00:05:25 -04:00
Fix indent
This commit is contained in:
parent
ab78d7182f
commit
81e0c1b478
@ -43,9 +43,10 @@ class QgsMapToolAddCircle: public QgsMapToolCapture
|
||||
protected:
|
||||
explicit QgsMapToolAddCircle( QgsMapCanvas *canvas ) = delete; //forbidden
|
||||
|
||||
/** The parent map tool, e.g. the add feature tool.
|
||||
/**
|
||||
* The parent map tool, e.g. the add feature tool.
|
||||
* Completed circle will be added to this tool by calling its addCurve() method.
|
||||
* */
|
||||
**/
|
||||
QgsMapToolCapture *mParentTool = nullptr;
|
||||
//! Circle points (in map coordinates)
|
||||
QgsPointSequence mPoints;
|
||||
|
@ -38,9 +38,10 @@ class QgsMapToolAddEllipse: public QgsMapToolCapture
|
||||
protected:
|
||||
explicit QgsMapToolAddEllipse( QgsMapCanvas *canvas ) = delete; //forbidden
|
||||
|
||||
/** The parent map tool, e.g. the add feature tool.
|
||||
/**
|
||||
* The parent map tool, e.g. the add feature tool.
|
||||
* Completed ellipse will be added to this tool by calling its toLineString() method.
|
||||
* */
|
||||
**/
|
||||
QgsMapToolCapture *mParentTool = nullptr;
|
||||
//! Ellipse points (in map coordinates)
|
||||
QgsPointSequence mPoints;
|
||||
|
@ -40,9 +40,10 @@ class QgsMapToolAddRectangle: public QgsMapToolCapture
|
||||
protected:
|
||||
explicit QgsMapToolAddRectangle( QgsMapCanvas *canvas ) = delete; //forbidden
|
||||
|
||||
/** The parent map tool, e.g. the add feature tool.
|
||||
/**
|
||||
* The parent map tool, e.g. the add feature tool.
|
||||
* Completed regular shape will be added to this tool by calling its addCurve() method.
|
||||
* */
|
||||
**/
|
||||
QgsMapToolCapture *mParentTool = nullptr;
|
||||
//! Regular Shape points (in map coordinates)
|
||||
QgsPointSequence mPoints;
|
||||
|
@ -48,9 +48,10 @@ class QgsMapToolAddRegularPolygon: public QgsMapToolCapture
|
||||
//! delete the spin box to enter the number of sides, if it exists
|
||||
void deleteNumberSidesSpinBox();
|
||||
|
||||
/** The parent map tool, e.g. the add feature tool.
|
||||
/**
|
||||
* The parent map tool, e.g. the add feature tool.
|
||||
* Completed regular polygon will be added to this tool by calling its addCurve() method.
|
||||
* */
|
||||
**/
|
||||
QgsMapToolCapture *mParentTool = nullptr;
|
||||
//! Regular Shape points (in map coordinates)
|
||||
QgsPointSequence mPoints;
|
||||
|
Loading…
x
Reference in New Issue
Block a user