| 107 | } |
| 108 | |
| 109 | void LuaConsoleWindow::removeScript() |
| 110 | { |
| 111 | /* Remove scripts from bottom to top */ |
| 112 | QModelIndexList indexlist = luaView->selectionModel()->selectedRows(); |
| 113 | std::sort(indexlist.begin(), indexlist.end()); |
| 114 | |
| 115 | for (auto it = indexlist.crbegin(); it != indexlist.crend(); it++) { |
| 116 | luaModel->removeFile(it->row()); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | void LuaConsoleWindow::clearScripts() |
| 121 | { |
nothing calls this directly
no test coverage detected