| 2035 | } |
| 2036 | |
| 2037 | QAction *MainWindow::gotoMemAction(QMenu *menu, bool vat) { |
| 2038 | QAction *gotoMem = menu->addAction(vat ? ACTION_GOTO_VAT_MEMORY_VIEW : ACTION_GOTO_MEMORY_VIEW); |
| 2039 | gotoMem->setEnabled(m_uiEditMode || ui->debugMemoryWidget->isVisible() || !m_docksMemory.isEmpty()); |
| 2040 | return gotoMem; |
| 2041 | } |
| 2042 | |
| 2043 | void MainWindow::handleCtrlClickText(QPlainTextEdit *edit) { |
| 2044 | if (QApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) { |
nothing calls this directly
no outgoing calls
no test coverage detected