]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Minor changes
authorapo <apo@opencascade.com>
Fri, 1 Jun 2007 13:06:38 +0000 (13:06 +0000)
committerapo <apo@opencascade.com>
Fri, 1 Jun 2007 13:06:38 +0000 (13:06 +0000)
src/VISU_I/VISU_Prs3d_i.cc
src/VISU_I/VISU_Result_i.cc
src/VISU_I/VISU_ScalarMap_i.hh

index f1e8d226e735d6d592f9a0aa66c00aa9b362ecdf..b8edb3a7bd67126549622bd1416d4d16fe24b2f3 100644 (file)
@@ -285,9 +285,11 @@ VISU::Prs3d_i
       CORBA::Object_var anObject = VISU::SObjectToObject(aSObject);
       if(CORBA::is_nil(anObject))
        continue;
+
       VISU::Result_var aResult = VISU::Result::_narrow(anObject);
       if(CORBA::is_nil(aResult))
        continue;
+
       CORBA::String_var anEntry = aSObject->GetID();
       aResultEntry = anEntry.in();
     }
index 86be553af228b00b4b573093f9d0294727c186de..97f15e1442a94ee4d15d1a01bee49c8412adf59f 100644 (file)
@@ -787,7 +787,6 @@ namespace VISU
 
        const TMeshMap& aMeshMap = theInput->GetMeshMap();
        TMeshMap::const_iterator aMeshMapIter = aMeshMap.begin();
-       const string& aMeshName = aMeshMapIter->first;
        const PMesh& aMesh = aMeshMapIter->second;
 
        vector<string> listParts = multiprObj.getParts();
@@ -816,12 +815,12 @@ namespace VISU
          char   lMEDFileName[256];
 
          // parse infos
-         int ret = sscanf(strPartInfo, "%s %d %s %s %s", 
-                          lMeshName,
-                          &lId,
-                          lPartName,
-                          lPath,
-                          lMEDFileName);
+         sscanf(strPartInfo, "%s %d %s %s %s", 
+                lMeshName,
+                &lId,
+                lPartName,
+                lPath,
+                lMEDFileName);
 
          if ((strstr(lPartName,"_MED") != NULL) || (strstr(lPartName,"_LOW") != NULL))
          {
index bdefaf637b8ec5e84a9dfa98e6071d43d56f8d5f..0ca9404c9703e96ac6e7bb95ba21e9a2e7f9618a 100644 (file)
@@ -38,7 +38,7 @@ namespace VISU
 {
   //============================================================================
   class VISU_I_EXPORT ScalarMap_i : public virtual POA_VISU::ScalarMap,
-                     public virtual ColoredPrs3d_i
+                                   public virtual ColoredPrs3d_i
   {
     static int myNbPresent;
     ScalarMap_i(const ScalarMap_i&);