From: Artem Zhidkov Date: Sat, 27 Jun 2020 17:43:48 +0000 (+0300) Subject: Meet coding style (split lines longer than 100 characters) X-Git-Tag: V9_6_0a1~70 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=8139af81d0f45fe3a28ca68d7a485845168ed040;p=modules%2Fshaper.git Meet coding style (split lines longer than 100 characters) --- diff --git a/src/Model/Model_AttributeSelection.h b/src/Model/Model_AttributeSelection.h index 0b1af7181..e5dc6d482 100644 --- a/src/Model/Model_AttributeSelection.h +++ b/src/Model/Model_AttributeSelection.h @@ -48,7 +48,8 @@ class Model_AttributeSelection : public ModelAPI_AttributeSelection, /// Reference to the parent attribute, if any (to split selection compounds in issue 1799) Model_AttributeSelectionList* myParent; - std::shared_ptr myRestoreDocument; // current document to restore by name + /// current document to restore by name + std::shared_ptr myRestoreDocument; /// If true attribute selects geometry instead of shape. bool myIsGeometricalSelection; diff --git a/src/PartSet/PartSet_SketcherReentrantMgr.h b/src/PartSet/PartSet_SketcherReentrantMgr.h index 723bef070..378de5ace 100644 --- a/src/PartSet/PartSet_SketcherReentrantMgr.h +++ b/src/PartSet/PartSet_SketcherReentrantMgr.h @@ -240,6 +240,8 @@ private: std::shared_ptr myClickedSketchPoint; /// cashed clicked point bool myIsAutoConstraints; + void* myLastAutoConstraint; //< Stores address of last automatic constraint. + //< Cannot be used as a pointer!!! }; #endif