| 162 | } |
| 163 | |
| 164 | bool WizCodeEditorDialog::cut() |
| 165 | { |
| 166 | if (!g_instance) |
| 167 | return false; |
| 168 | if (QApplication::activeWindow() != g_instance) |
| 169 | return false; |
| 170 | |
| 171 | g_instance->m_codeBrowser->page()->triggerAction(QWebEnginePage::Cut); |
| 172 | // |
| 173 | return true; |
| 174 | } |
| 175 | |
| 176 | bool WizCodeEditorDialog::paste() |
| 177 | { |
nothing calls this directly
no test coverage detected