| 44 | void NppInterface::set_menu_item_check(int cmd_id, bool checked) { send_msg_to_npp(NPPM_SETMENUITEMCHECK, cmd_id, static_cast<LPARAM>(checked)); } |
| 45 | |
| 46 | HMENU NppInterface::get_menu_handle(int menu_type) const { return reinterpret_cast<HMENU>(send_msg_to_npp(NPPM_GETMENUHANDLE, menu_type)); } |
| 47 | |
| 48 | int NppInterface::get_target_view() const { |
| 49 | return static_cast<int>(m_target_view); |
no outgoing calls
no test coverage detected