Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Oct 9, 2017
1 parent ab78d71 commit 81e0c1b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions src/app/qgsmaptooladdcircle.h
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions src/app/qgsmaptooladdellipse.h
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions src/app/qgsmaptooladdrectangle.h
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions src/app/qgsmaptooladdregularpolygon.h
Expand Up @@ -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;
Expand Down

0 comments on commit 81e0c1b

Please sign in to comment.