| 151 | } |
| 152 | |
| 153 | void DBCLoadSaveWindow::editFile() |
| 154 | { |
| 155 | int idx = ui->tableFiles->currentRow(); |
| 156 | if (idx < 0) return; |
| 157 | |
| 158 | editorWindow->setFileIdx(idx); |
| 159 | editorWindow->show(); |
| 160 | } |
| 161 | |
| 162 | void DBCLoadSaveWindow::cellChanged(int row, int col) |
| 163 | { |
nothing calls this directly
no test coverage detected