| 220 | } |
| 221 | |
| 222 | void Window::SetWindowTitle(LPCWSTR title) |
| 223 | { |
| 224 | if(!::SetWindowText(hwnd, title)) |
| 225 | throw Win32Exception(::GetLastError()); |
| 226 | } |
| 227 | |
| 228 | void Window::SetScrollRanges( INT scrollRangeX, |
| 229 | INT scrollRangeY, |
nothing calls this directly
no test coverage detected