| 247 | } |
| 248 | |
| 249 | INT Window::CreateMessageBox(LPCWSTR message, LPCWSTR title, UINT type) |
| 250 | { |
| 251 | if (title == NULL) |
| 252 | return ::MessageBox(hwnd, message, appName.c_str(), type); |
| 253 | else |
| 254 | return ::MessageBox(hwnd, message, title, type); |
| 255 | } |
| 256 | |
| 257 | void Window::Maximize() |
| 258 | { |
nothing calls this directly
no outgoing calls
no test coverage detected