MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / Show

Method Show

src/Windows/OutputWindow.cpp:105–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105int 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
114int 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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected