Salome HOME
HYDROGUI_Wizard has been refactored and now uses QStackedWidget instead of QWizard.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_UpdateImageOp.cxx
index 09d31a9defa64f5ad490befae522a5d590a70bfb..34256182279b0d787ee03868978891d6955a5553 100644 (file)
@@ -29,8 +29,6 @@
 #include <HYDROData_Document.h>
 #include <HYDROData_Image.h>
 
-#include <HYDROOperations_Factory.h>
-
 HYDROGUI_UpdateImageOp::HYDROGUI_UpdateImageOp( HYDROGUI_Module* theModule )
 : HYDROGUI_Operation( theModule )
 {
@@ -48,19 +46,16 @@ void HYDROGUI_UpdateImageOp::startOperation()
   startDocOperation();
 
   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
-  for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
+  for( int anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
   {
     Handle(HYDROData_Image) anImage =
       Handle(HYDROData_Image)::DownCast( aSeq.Value( anIndex ) );
-    if( !anImage.IsNull() && anImage->MustBeUpdated() )
-    {
-      HYDROOperations_Factory* aFactory = HYDROOperations_Factory::Factory();
-      aFactory->UpdateImage( doc(), anImage );
-    }
+    if( !anImage.IsNull() && anImage->IsMustBeUpdated() )
+      anImage->Update();
   }
 
   commitDocOperation();
 
-  module()->update( UF_Model | UF_Viewer | UF_GV_Forced );
+  module()->update( UF_Model | UF_Viewer | UF_GV_Forced | UF_OCCViewer | UF_OCC_Forced );
   commit();
 }