| 248 | } |
| 249 | |
| 250 | void SWindow::SDispatchMessage(UINT uMsg, WPARAM wParam, LPARAM lParam) |
| 251 | { |
| 252 | SSendMessage(uMsg,wParam,lParam); |
| 253 | SWindow *pChild = GetWindow(GSW_FIRSTCHILD); |
| 254 | while(pChild) |
| 255 | { |
| 256 | pChild->SDispatchMessage(uMsg,wParam,lParam); |
| 257 | pChild = pChild->GetWindow(GSW_NEXTSIBLING); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | void SWindow::Move(LPCRECT prect) |
| 262 | { |
no test coverage detected