]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
SMH: Fix for compilation with correct CASCADE
authorsmh <smh@opencascade.com>
Tue, 31 May 2005 05:53:13 +0000 (05:53 +0000)
committersmh <smh@opencascade.com>
Tue, 31 May 2005 05:53:13 +0000 (05:53 +0000)
src/SVTK/SVTK_Selector.cxx

index 00e223571f37c0c6a3686da1282778a92bb0930f..63a28eab0ded281e8413c86f9bba7237c799a8c4 100644 (file)
@@ -26,6 +26,7 @@
 //  Module : SALOME
 //  $Header$
 
+
 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
 #include <TColStd_IndexedMapOfInteger.hxx>
 
@@ -36,7 +37,6 @@
 #include "SALOME_ListIteratorOfListIO.hxx"
 
 #include "SVTK_Selector.h"
-
 #include "utilities.h"
 
 SVTK_Selector
@@ -247,8 +247,9 @@ SVTK_Selector
                    const TColStd_IndexedMapOfInteger& theIndices, 
                    bool theIsModeShift)
 {
+  TColStd_IndexedMapOfInteger empty;
   if(!myMapIOSubIndex.IsBound(theIO))
-    myMapIOSubIndex.Bind(theIO,TColStd_IndexedMapOfInteger());
+    myMapIOSubIndex.Bind(theIO, empty);
 
   TColStd_IndexedMapOfInteger& aMapIndex = myMapIOSubIndex.ChangeFind(theIO);
   aMapIndex = theIndices;
@@ -271,8 +272,9 @@ SVTK_Selector
                    const TColStd_MapOfInteger& theIndices, 
                    bool theIsModeShift)
 {
+  TColStd_IndexedMapOfInteger empty;   
   if(!myMapIOSubIndex.IsBound(theIO))
-    myMapIOSubIndex.Bind(theIO,TColStd_IndexedMapOfInteger());
+    myMapIOSubIndex.Bind(theIO, empty);
 
   TColStd_IndexedMapOfInteger& aMapIndex = myMapIOSubIndex.ChangeFind(theIO);
 
@@ -297,8 +299,9 @@ SVTK_Selector
                    int theIndex, 
                    bool theIsModeShift)
 {
+  TColStd_IndexedMapOfInteger empty;           
   if(!myMapIOSubIndex.IsBound(theIO))
-    myMapIOSubIndex.Bind(theIO,TColStd_IndexedMapOfInteger());
+    myMapIOSubIndex.Bind(theIO, empty);
   
   TColStd_IndexedMapOfInteger& aMapIndex = myMapIOSubIndex.ChangeFind(theIO);