Salome HOME
Drawing of zones in OCC view improved.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_UpdateImageOp.cxx
index 09d31a9defa64f5ad490befae522a5d590a70bfb..0ac92a748e520d4b67df3feab9247d96e22ea902 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 )
 {
@@ -53,10 +51,7 @@ void HYDROGUI_UpdateImageOp::startOperation()
     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 );
-    }
+      anImage->Update();
   }
 
   commitDocOperation();