| 103 | } |
| 104 | |
| 105 | int OutputWindow::Show(bool show) { |
| 106 | int res = DockableWindow::Show(show); |
| 107 | |
| 108 | if (m_hNotify != NULL) |
| 109 | ::SendMessage(m_hNotify, WM_OUTPUTSHOWN, (WPARAM)show?TRUE:FALSE, 0); |
| 110 | |
| 111 | return res; |
| 112 | } |
| 113 | |
| 114 | int OutputWindow::OnSize(int newWidth, int newHeight) { |
| 115 | BOOL res = SetWindowPos(m_hScintilla, NULL, 0, 0, newWidth, newHeight, SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOOWNERZORDER|SWP_NOZORDER); |
nothing calls this directly
no outgoing calls
no test coverage detected