| 76 | } |
| 77 | |
| 78 | int DockableWindow::Create(HWND hParent, HWND hNpp, int MenuID, int MenuCommand) { |
| 79 | int ret = Window::Create(hParent); |
| 80 | if (ret != 0) |
| 81 | return -1; |
| 82 | |
| 83 | m_hNpp = hNpp; |
| 84 | m_menuID = MenuID; |
| 85 | m_menuCmd = MenuCommand; |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | int DockableWindow::Destroy() { |
| 91 | //Unfortunately, N++ does not support Unregistering..... |
nothing calls this directly
no outgoing calls
no test coverage detected