Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Tool.cxx
index 39b6bb97dcbed1f0dbe1a38023ca1a3238b99643..d98db72a4eaea477352a23a6442de3d30d7930f8 100644 (file)
@@ -288,21 +288,21 @@ QString HYDROGUI_Tool::GenerateObjectName( HYDROGUI_Module* theModule,
   return aName;
 }
 
-int HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
+size_t HYDROGUI_Tool::GetActiveGraphicsViewId( HYDROGUI_Module* theModule )
 {
-  int aViewId = 0;
+  size_t aViewId = 0;
   SUIT_ViewManager* aViewMgr = theModule->getApp()->activeViewManager();
   if( !aViewMgr || aViewMgr->getType() != GraphicsView_Viewer::Type() )
     return aViewId;
 
   if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
-    aViewId = (int)aViewer;
+    aViewId = (size_t)aViewer;
   return aViewId;
 }
 
-QList<int> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
+QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
 {
-  QList<int> aList;
+  QList<size_t> aList;
   ViewManagerList aViewMgrs;
   theModule->getApp()->viewManagers( GraphicsView_Viewer::Type(), aViewMgrs );
   QListIterator<SUIT_ViewManager*> anIter( aViewMgrs );
@@ -311,7 +311,7 @@ QList<int> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
     if( SUIT_ViewManager* aViewMgr = anIter.next() )
     {
       if( SUIT_ViewModel* aViewer = aViewMgr->getViewModel() )
-        aList.append( (int)aViewer );
+        aList.append( (size_t)aViewer );
     }
   }
   return aList;