| 113 | } |
| 114 | |
| 115 | void LuaConsoleModel::removeFile(int row) |
| 116 | { |
| 117 | Lua::LuaFunctionList& lfl = Lua::Callbacks::getList(); |
| 118 | |
| 119 | beginRemoveRows(QModelIndex(), row, row); |
| 120 | lfl.removeForFile(row); |
| 121 | endRemoveRows(); |
| 122 | } |
| 123 | |
| 124 | void LuaConsoleModel::clear() |
| 125 | { |
no test coverage detected