| 896 | } |
| 897 | |
| 898 | bool Widget::IsModal() const { |
| 899 | if( modal_widget.lock() == shared_from_this() ) { |
| 900 | return true; |
| 901 | } |
| 902 | |
| 903 | return false; |
| 904 | } |
| 905 | |
| 906 | bool Widget::HasModal() { |
| 907 | return !modal_widget.expired(); |
nothing calls this directly
no outgoing calls
no test coverage detected