| 126 | |
| 127 | |
| 128 | bool WizCodeEditorDialog::selectAll() |
| 129 | { |
| 130 | if (!g_instance) |
| 131 | return false; |
| 132 | if (QApplication::activeWindow() != g_instance) |
| 133 | return false; |
| 134 | |
| 135 | g_instance->m_codeBrowser->page()->triggerAction(QWebEnginePage::SelectAll); |
| 136 | // |
| 137 | return true; |
| 138 | } |
| 139 | |
| 140 | bool WizCodeEditorDialog::undo() |
| 141 | { |
no test coverage detected