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,7 +43,8 @@ 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;

View File

@ -38,7 +38,8 @@ 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;

View File

@ -40,7 +40,8 @@ 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;

View File

@ -48,7 +48,8 @@ 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;