| 2140 | } |
| 2141 | |
| 2142 | void CMainFrame::OnModuleGrooveSettings() // // // |
| 2143 | { |
| 2144 | if (!m_pGrooveDlg) { |
| 2145 | m_pGrooveDlg = std::make_unique<CGrooveDlg>(); |
| 2146 | m_pGrooveDlg->AssignModule(*GetDoc().GetModule()); |
| 2147 | m_pGrooveDlg->Create(IDD_GROOVE, this); |
| 2148 | } |
| 2149 | if (!m_pGrooveDlg->IsWindowVisible()) |
| 2150 | m_pGrooveDlg->CenterWindow(); |
| 2151 | m_pGrooveDlg->ShowWindow(SW_SHOW); |
| 2152 | m_pGrooveDlg->SetFocus(); |
| 2153 | } |
| 2154 | |
| 2155 | void CMainFrame::OnModuleBookmarkSettings() // // // |
| 2156 | { |
nothing calls this directly
no test coverage detected