| 176 | } |
| 177 | |
| 178 | bool Selector::operator==( const Selector& other ) const { |
| 179 | // Check if valid selectors. |
| 180 | if( !m_hash || !other.m_hash ) { |
| 181 | return false; |
| 182 | } |
| 183 | |
| 184 | return m_hash == other.m_hash; |
| 185 | } |
| 186 | |
| 187 | bool Selector::Matches( Widget::PtrConst widget ) const { |
| 188 | if( !widget ) { |
nothing calls this directly
no outgoing calls
no test coverage detected