Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / Model / Model_ResultPart.cpp
index 0a4422ad125769af3799c094179083b46d3bb313..74e2b22a19b74419e14c219b339ebe9bcf86744b 100644 (file)
@@ -65,11 +65,11 @@ void Model_ResultPart::activate()
   }
 
   std::shared_ptr<ModelAPI_AttributeDocRef> aDocRef = data()->document(DOC_REF());
-  
+
   // activation may cause changes in current features in document, so it must be in transaction
   bool isNewTransaction = false;
   SessionPtr aMgr = ModelAPI_Session::get();
-  if (!aMgr->isOperation()) { 
+  if (!aMgr->isOperation()) {
     // open transaction even document is not created to set current docs in setActiveDocument
     aMgr->startOperation("Activation");
     isNewTransaction = true;
@@ -103,7 +103,7 @@ std::shared_ptr<ModelAPI_ResultPart> Model_ResultPart::original()
   return std::dynamic_pointer_cast<ModelAPI_ResultPart>(data()->owner());
 }
 
-bool Model_ResultPart::isActivated() 
+bool Model_ResultPart::isActivated()
 {
   if (myTrsf.get()) {
     if (!baseRef().get()) // may be on close
@@ -244,7 +244,7 @@ std::string Model_ResultPart::nameInPart(const std::shared_ptr<GeomAPI_Shape>& t
   if (!aDoc.get()) // the part document is not presented for the moment
     return "";
   TDF_Label anAccessLabel = aDoc->generalLabel();
-  // make the selection attribute anyway: 
+  // make the selection attribute anyway:
   // otherwise just by name it is not stable to search the result
   std::string aName;
   // for this the context result is needed
@@ -356,7 +356,7 @@ void Model_ResultPart::updateShape()
   myTrsf.reset();
 }
 
-void Model_ResultPart::setTrsf(std::shared_ptr<ModelAPI_Result> theThis, 
+void Model_ResultPart::setTrsf(std::shared_ptr<ModelAPI_Result> theThis,
     const std::shared_ptr<GeomAPI_Trsf>& theTransformation)
 {
   updateShape();