| 1851 | } |
| 1852 | |
| 1853 | void MainWindow::contextLcd(const QPoint &posa) { |
| 1854 | QMenu menu; |
| 1855 | QPoint globalPos = ui->lcd->mapToGlobal(posa); |
| 1856 | menu.addMenu(ui->menuFile); |
| 1857 | menu.addMenu(ui->menuCalculator); |
| 1858 | menu.addMenu(ui->menuCapture); |
| 1859 | menu.addMenu(m_menuDocks); |
| 1860 | menu.addMenu(ui->menuExtras); |
| 1861 | menu.exec(globalPos); |
| 1862 | } |
| 1863 | |
| 1864 | void MainWindow::consoleModified() { |
| 1865 | ui->console->clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected