Fix indent

This commit is contained in:
lbartoletti 2017-10-09 14:44:35 +02:00
parent ab78d7182f
commit 81e0c1b478
4 changed files with 12 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;