X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeString.cpp;h=d2bd6191aa87a8aa9dea0864c05792a5c776c577;hb=443d4d24432c8bb907c28b23bf8db67dad263886;hp=fa22e10224566a26c9f746dfd5a61a0806783696;hpb=d2d4d74fe59b3bd7ca2ec963fdcc871cc68b90d2;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeString.cpp b/src/Model/Model_AttributeString.cpp index fa22e1022..d2bd6191a 100644 --- a/src/Model/Model_AttributeString.cpp +++ b/src/Model/Model_AttributeString.cpp @@ -1,6 +1,8 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_AttributeString.cpp -// Created: 2 june 2014 -// Author: Vitaly Smetannikov +// Created: 25 august 2014 +// Author: sbh #include #include @@ -11,8 +13,6 @@ #include #include #include -#include -#include #include @@ -33,7 +33,7 @@ std::string Model_AttributeString::value() Model_AttributeString::Model_AttributeString(TDF_Label& theLabel) { // check the attribute could be already presented in this doc (after load document) - myIsInitialized = theLabel.FindAttribute(TDataStd_Integer::GetID(), myString) == Standard_True; + myIsInitialized = theLabel.FindAttribute(TDataStd_Name::GetID(), myString) == Standard_True; if (!myIsInitialized) { // create attribute: not initialized by value yet, just empty string myString = TDataStd_Name::Set(theLabel, TCollection_ExtendedString());