]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix compilation warnings
authorvsr <vsr@opencascade.com>
Thu, 3 Nov 2011 09:53:32 +0000 (09:53 +0000)
committervsr <vsr@opencascade.com>
Thu, 3 Nov 2011 09:53:32 +0000 (09:53 +0000)
src/VISUGUI/VisuGUI_BuildProgressDlg.cxx
src/VISUGUI/VisuGUI_Sweep.cxx
src/VISU_SWIG/VISU_Gen_s.cc

index 98adfe218e424f169e07fd4679feded2cee642bb..ab8ae2398ed3596460a3bc6b500cea15ef6639a7 100644 (file)
@@ -263,7 +263,7 @@ void VisuGUI_BuildProgressDlg::onStart()
     if( aBuildAtOnce )
     {
       QApplication::setOverrideCursor( Qt::WaitCursor );
-      myCurrentTime = vtkTimerLog::GetCurrentTime();
+      myCurrentTime = vtkTimerLog::GetUniversalTime();
     }
 
     myTime.setHMS( 0, 0, 0 );
@@ -358,7 +358,7 @@ void VisuGUI_BuildProgressDlg::onTimer()
         QApplication::restoreOverrideCursor();
 
         QTime aTime;
-        int mSecs = ( int )( 1000 * ( vtkTimerLog::GetCurrentTime() - myCurrentTime ) );
+        int mSecs = ( int )( 1000 * ( vtkTimerLog::GetUniversalTime() - myCurrentTime ) );
         aTime = aTime.addMSecs( mSecs );
         if( aTime.minute() > 9 )
           myTimeLCDNumber->setNumDigits( 9 );
index 74ea0207b0b78a5be11dcda9b92609afecef21c0..f44a1e44b694c41df20d2f3c21f50eeec2c48448 100644 (file)
@@ -363,8 +363,7 @@ void VisuGUI_Sweep::onSelectionChanged()
 //----------------------------------------------------------------------------
 void VisuGUI_Sweep::onValueChanged( int value )
 {
-  bool anIsValidSelection = ( myColoredPrs3d != NULL )
-                          && (myActor != NULL );
+  bool anIsValidSelection = ( myColoredPrs3d != 0 ) && ( myActor != 0 );
 
   if ( !anIsValidSelection )
     return;
index 7055cb62d08e09fcf0368714f459b6b81fd04b74..c4f8b25879279f161a771a76b0cb59e94509293c 100644 (file)
@@ -84,7 +84,7 @@ void View3D::Display(ScalarMap* theScalarMap){
   if(VISU_ScalarMapPL* aScalarMap = theScalarMap->GetImpl()){
     aScalarMap->Update();
     
-    myRen->RemoveAllProps();
+    myRen->RemoveAllViewProps();
     vtkActor* anActor = vtkActor::New();
     anActor->SetMapper(aScalarMap->GetMapper());