X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeString.cpp;h=72eb091932cb241b7662ab9bab9047f64196f48a;hb=93d261c062c12388f4420043776e8ee19ddceaa0;hp=53650b1202b3cfa9eb279c5165d9f3d95acfbb35;hpb=3874b57fe5aba25ff5aee2a07654fc23c1ee8eb0;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeString.cpp b/src/Model/Model_AttributeString.cpp index 53650b120..72eb09193 100644 --- a/src/Model/Model_AttributeString.cpp +++ b/src/Model/Model_AttributeString.cpp @@ -13,8 +13,6 @@ #include #include #include -#include -#include #include @@ -22,6 +20,8 @@ void Model_AttributeString::setValue(const std::string& theValue) { TCollection_ExtendedString aValue(theValue.c_str()); if (!myIsInitialized || myString->Get() != aValue) { + if (myString.IsNull()) + myString = TDataStd_Name::Set(myLab, TCollection_ExtendedString()); myString->Set(aValue); owner()->data()->sendAttributeUpdated(this); } @@ -29,15 +29,19 @@ void Model_AttributeString::setValue(const std::string& theValue) std::string Model_AttributeString::value() { + if (myString.IsNull()) + return ""; // not initialized return TCollection_AsciiString(myString->Get()).ToCString(); } Model_AttributeString::Model_AttributeString(TDF_Label& theLabel) +{ + myLab = theLabel; + reinit(); +} + +void Model_AttributeString::reinit() { // check the attribute could be already presented in this doc (after load document) - myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myString) == Standard_True; - if (!myIsInitialized) { - // create attribute: not initialized by value yet, just empty string - myString = TDataStd_Name::Set(theLabel, TCollection_ExtendedString()); - } + myIsInitialized = myLab.FindAttribute(TDataStd_Name::GetID(), myString) == Standard_True; }