Skip to content

Commit 81e0c1b

Browse files
committedOct 9, 2017
Fix indent
1 parent ab78d71 commit 81e0c1b

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed
 

‎src/app/qgsmaptooladdcircle.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ class QgsMapToolAddCircle: public QgsMapToolCapture
4343
protected:
4444
explicit QgsMapToolAddCircle( QgsMapCanvas *canvas ) = delete; //forbidden
4545

46-
/** The parent map tool, e.g. the add feature tool.
46+
/**
47+
* The parent map tool, e.g. the add feature tool.
4748
* Completed circle will be added to this tool by calling its addCurve() method.
48-
* */
49+
**/
4950
QgsMapToolCapture *mParentTool = nullptr;
5051
//! Circle points (in map coordinates)
5152
QgsPointSequence mPoints;

‎src/app/qgsmaptooladdellipse.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ class QgsMapToolAddEllipse: public QgsMapToolCapture
3838
protected:
3939
explicit QgsMapToolAddEllipse( QgsMapCanvas *canvas ) = delete; //forbidden
4040

41-
/** The parent map tool, e.g. the add feature tool.
41+
/**
42+
* The parent map tool, e.g. the add feature tool.
4243
* Completed ellipse will be added to this tool by calling its toLineString() method.
43-
* */
44+
**/
4445
QgsMapToolCapture *mParentTool = nullptr;
4546
//! Ellipse points (in map coordinates)
4647
QgsPointSequence mPoints;

‎src/app/qgsmaptooladdrectangle.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ class QgsMapToolAddRectangle: public QgsMapToolCapture
4040
protected:
4141
explicit QgsMapToolAddRectangle( QgsMapCanvas *canvas ) = delete; //forbidden
4242

43-
/** The parent map tool, e.g. the add feature tool.
43+
/**
44+
* The parent map tool, e.g. the add feature tool.
4445
* Completed regular shape will be added to this tool by calling its addCurve() method.
45-
* */
46+
**/
4647
QgsMapToolCapture *mParentTool = nullptr;
4748
//! Regular Shape points (in map coordinates)
4849
QgsPointSequence mPoints;

‎src/app/qgsmaptooladdregularpolygon.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ class QgsMapToolAddRegularPolygon: public QgsMapToolCapture
4848
//! delete the spin box to enter the number of sides, if it exists
4949
void deleteNumberSidesSpinBox();
5050

51-
/** The parent map tool, e.g. the add feature tool.
51+
/**
52+
* The parent map tool, e.g. the add feature tool.
5253
* Completed regular polygon will be added to this tool by calling its addCurve() method.
53-
* */
54+
**/
5455
QgsMapToolCapture *mParentTool = nullptr;
5556
//! Regular Shape points (in map coordinates)
5657
QgsPointSequence mPoints;

0 commit comments

Comments
 (0)
Please sign in to comment.