| 653 | } |
| 654 | |
| 655 | void CListUI::Scroll(int dx, int dy) |
| 656 | { |
| 657 | if( dx == 0 && dy == 0 ) return; |
| 658 | SIZE sz = m_pList->GetScrollPos(); |
| 659 | m_pList->SetScrollPos(CSize(sz.cx + dx, sz.cy + dy)); |
| 660 | } |
| 661 | |
| 662 | void CListUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) |
| 663 | { |
nothing calls this directly
no test coverage detected