| 889 | } |
| 890 | |
| 891 | Uint32 UINode::getForegroundRadius() const { |
| 892 | return NULL != mForeground ? mForeground->getBorderRadius() : 0; |
| 893 | } |
| 894 | |
| 895 | UIBorderDrawable* UINode::setBorderEnabled( bool enabled ) const { |
| 896 | const_cast<UINode*>( this )->writeFlag( UI_BORDER, enabled ? 1 : 0 ); |
nothing calls this directly
no test coverage detected