+ ControlHandle control = (ControlHandle) m_macToolHandles[ tool->m_index ] ;
+ if ( UMAHasAppearance() )
+ {
+ if ( enable )
+ ::ActivateControl( control ) ;
+ else
+ ::DeactivateControl( control ) ;
+ }
+ else
+ {
+ if ( enable )
+ ::HiliteControl( control , 0 ) ;
+ else
+ ::HiliteControl( control , 255 ) ;
+ }