| 215 | } |
| 216 | |
| 217 | void Window::SetWindowTitle(LPCWSTR title) |
| 218 | { |
| 219 | if (!::SetWindowText(hwnd, title)) |
| 220 | throw Win32Exception(::GetLastError()); |
| 221 | } |
| 222 | |
| 223 | void Window::SetScrollRanges( INT scrollRangeX, |
| 224 | INT scrollRangeY, |
nothing calls this directly
no test coverage detected