Salome HOME
Fix problem with waiting SALOMEDS_Server:
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeIOR.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 5665e8a..8983f3d
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -65,19 +65,8 @@ void SALOMEDSImpl_AttributeIOR::SetValue(const std::string& theValue)
   CheckLocked();
 
   Backup();
-  //remove IOR entry in study
-  if(theValue != myString)
-    {
-      SALOMEDSImpl_Study* study=SALOMEDSImpl_Study::GetStudy(Label());
-      study->RegisterGenObj(theValue, Label());
-      study->UnRegisterGenObj(myString, Label());
-      study->DeleteIORLabelMapItem(myString);
-    }
 
   myString = theValue;
-
-  //add IOR entry in study
-  SALOMEDSImpl_Study::IORUpdated(this);
   
   //Reason = 5 means that IOR attribute updated
   //Used in the gui module to detect that IOR attribure was assigned to the object
@@ -104,7 +93,6 @@ SALOMEDSImpl_AttributeIOR::SALOMEDSImpl_AttributeIOR()
 
 SALOMEDSImpl_AttributeIOR::~SALOMEDSImpl_AttributeIOR()
 {
-  SALOMEDSImpl_Study::UnRegisterGenObj(myString, Label());
 }
 
 //=======================================================================