Salome HOME
Prepare version 1.2.1: quick fix for iteration 2 release
[modules/shaper.git] / src / Model / Model_AttributeReference.cpp
index 8a44eec0e20051292bb7d57617a0f72e9c1e7119..700e2f7d3d387f3e1d902d34a7de0e02692f14a8 100644 (file)
@@ -28,7 +28,7 @@ void Model_AttributeReference::setValue(ObjectPtr theObject)
     REMOVE_BACK_REF(aValue);
 
     TDF_Label anObjLab;
-    if (theObject.get() && theObject->data().get() && theObject->data()->isValid()) {
+    if (theObject.get() && theObject->data()->isValid()) {
       std::shared_ptr<Model_Data> aData = std::dynamic_pointer_cast<Model_Data>(
         theObject->data());
       anObjLab = aData->label().Father(); // object label
@@ -96,7 +96,8 @@ ObjectPtr Model_AttributeReference::value()
 
 bool Model_AttributeReference::isInitialized()
 {
-  if (myRef->Label() == myRef->Get()) { // empty reference is not initialized
+  if (myRef->Label() == myRef->Get() && !myRef->Label().IsAttribute(TDataStd_Comment::GetID())) {
+    // empty reference is not initialized
     return false;
   }
   return ModelAPI_AttributeReference::isInitialized();