| 85 | } |
| 86 | |
| 87 | void Window::SetWindowStyle(DWORD newStyle) |
| 88 | { |
| 89 | if(!::SetWindowLongPtr(hwnd, GWL_STYLE, newStyle)) |
| 90 | throw Win32Exception(::GetLastError()); |
| 91 | |
| 92 | style = newStyle; |
| 93 | } |
| 94 | |
| 95 | void Window::SetExtendedStyle(DWORD newExStyle) |
| 96 | { |
nothing calls this directly
no test coverage detected