#include <ngsetop.h>
Inheritance diagram for OpRemoveNamesFromSel:
Private Member Functions | |
CC_DECLARE_DYNCREATE (OpRemoveNamesFromSel) | |
virtual void | Do (OpDescriptor *) |
Performs the OPTOKEN_REMOVE_NAMES_FROM_SEL operation. |
Definition at line 260 of file ngsetop.h.
|
|
|
Performs the OPTOKEN_REMOVE_NAMES_FROM_SEL operation.
Reimplemented from Operation. Definition at line 671 of file ngsetop.cpp. 00672 { 00673 AllowOpScan aosSel(this, &theSelectedObjects); 00674 00675 if (!aosSel.Scan() || 00676 !DoStartSelOp(TRUE, TRUE) || 00677 !HideScan(this, &theSelectedObjects).Scan() || 00678 !aosSel.Update()) 00679 { 00680 FailAndExecute(); 00681 } 00682 00683 End(); 00684 }
|