}
theNumActions--;
}
- update( UF_All | UF_GV_Init | UF_GV_Forced );
+ update( UF_All );
}
QApplication::restoreOverrideCursor();
return anIsOk;
}
theNumActions--;
}
- update( UF_All | UF_GV_Init | UF_GV_Forced );
+ update( UF_All );
}
QApplication::restoreOverrideCursor();
return anIsOk;
*/
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