| 479 | } |
| 480 | |
| 481 | void CTreeListItem::TmiSetRectangle( _In_ const RECT& rc ) const { |
| 482 | ASSERT( ( rc.right + 1 ) >= rc.left ); |
| 483 | ASSERT( rc.bottom >= rc.top ); |
| 484 | m_rect.left = static_cast<short>( rc.left ); |
| 485 | m_rect.top = static_cast<short>( rc.top ); |
| 486 | m_rect.right = static_cast<short>( rc.right ); |
| 487 | m_rect.bottom = static_cast<short>( rc.bottom ); |
| 488 | } |
| 489 | |
| 490 | const COLORREF CTreeListItem::Concrete_ItemTextColor( ) const { |
| 491 | if ( m_attr.invalid ) { |
no outgoing calls
no test coverage detected