| 186 | } |
| 187 | |
| 188 | void CComboWnd::Scroll(int dx, int dy) |
| 189 | { |
| 190 | if( dx == 0 && dy == 0 ) return; |
| 191 | SIZE sz = m_pLayout->GetScrollPos(); |
| 192 | m_pLayout->SetScrollPos(CSize(sz.cx + dx, sz.cy + dy)); |
| 193 | } |
| 194 | |
| 195 | #if(_WIN32_WINNT >= 0x0501) |
| 196 | UINT CComboWnd::GetClassStyle() const |
nothing calls this directly
no test coverage detected