From 81e0c1b47843a8dfe5e563ff22ece1706ad0cea8 Mon Sep 17 00:00:00 2001
From: lbartoletti <l.bartoletti@free.fr>
Date: Mon, 9 Oct 2017 14:44:35 +0200
Subject: [PATCH] Fix indent

---
 src/app/qgsmaptooladdcircle.h         | 5 +++--
 src/app/qgsmaptooladdellipse.h        | 5 +++--
 src/app/qgsmaptooladdrectangle.h      | 5 +++--
 src/app/qgsmaptooladdregularpolygon.h | 5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/src/app/qgsmaptooladdcircle.h b/src/app/qgsmaptooladdcircle.h
index 8073f8c46f4..f95d83632eb 100644
--- a/src/app/qgsmaptooladdcircle.h
+++ b/src/app/qgsmaptooladdcircle.h
@@ -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;
diff --git a/src/app/qgsmaptooladdellipse.h b/src/app/qgsmaptooladdellipse.h
index 16349e0a8aa..426d29b7dac 100644
--- a/src/app/qgsmaptooladdellipse.h
+++ b/src/app/qgsmaptooladdellipse.h
@@ -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;
diff --git a/src/app/qgsmaptooladdrectangle.h b/src/app/qgsmaptooladdrectangle.h
index 83aa0b1836e..04d8ca378e4 100644
--- a/src/app/qgsmaptooladdrectangle.h
+++ b/src/app/qgsmaptooladdrectangle.h
@@ -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;
diff --git a/src/app/qgsmaptooladdregularpolygon.h b/src/app/qgsmaptooladdregularpolygon.h
index 2128e63c11a..29057c1e12b 100644
--- a/src/app/qgsmaptooladdregularpolygon.h
+++ b/src/app/qgsmaptooladdregularpolygon.h
@@ -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;