]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Minor changes.
authorouv <ouv@opencascade.com>
Tue, 6 Aug 2013 11:46:38 +0000 (11:46 +0000)
committerouv <ouv@opencascade.com>
Tue, 6 Aug 2013 11:46:38 +0000 (11:46 +0000)
src/HYDROGUI/HYDROGUI_Operations.cxx
src/HYDROGUI/HYDROGUI_UpdateFlags.h

index de4b15ab8d243eddb1fc0c2591fab383820b3332..f17376e2114e0255d01324f989253dcdea59aa0f 100644 (file)
@@ -153,7 +153,7 @@ bool HYDROGUI_Module::onUndo( int theNumActions )
       }
       theNumActions--;
     }
-    update( UF_All | UF_GV_Init | UF_GV_Forced );
+    update( UF_All );
   }
   QApplication::restoreOverrideCursor();
   return anIsOk;
@@ -175,7 +175,7 @@ bool HYDROGUI_Module::onRedo( int theNumActions )
       }
       theNumActions--;
     }
-    update( UF_All | UF_GV_Init | UF_GV_Forced );
+    update( UF_All );
   }
   QApplication::restoreOverrideCursor();
   return anIsOk;
index 0bbaaaab40c600af3d9659e88cc0a3caadd4a2ff..e3ae171b55bb842bbb2c7cf609e8adce0186f147 100644 (file)
  */
 typedef enum
 {
-  UF_All           = UF_Forced | UF_Model | UF_Viewer | UF_ObjBrowser | UF_Controls,
+  UF_Base          = UF_Forced | UF_Model | UF_Viewer | UF_ObjBrowser | UF_Controls,
   UF_GV_Init       = 0x00000020, //!< initial update (used with UF_Viewer)
   UF_GV_Forced     = 0x00000040, //!< to force recomputing all presentations (used with UF_Viewer)
+  UF_All           = UF_Base | UF_GV_Init | UF_GV_Forced //!< all update flags
 } HYDRO_UpdateFlags;
 
 #endif