| 674 | } |
| 675 | |
| 676 | void MainWindow::captureModified() |
| 677 | { |
| 678 | // once the capture is modified, enable the save-in-place option. It might already have been |
| 679 | // enabled if this capture was a temporary one |
| 680 | if(m_Ctx.IsCaptureLoaded()) |
| 681 | ui->action_Save_Capture_Inplace->setEnabled(true); |
| 682 | |
| 683 | updateToolsMenuOptions(); |
| 684 | } |
| 685 | |
| 686 | void MainWindow::LoadFromFilename(const QString &filename, bool temporary) |
| 687 | { |
no test coverage detected