| 194 | } |
| 195 | |
| 196 | InsertRemoveBootEntryFilePathCommand::InsertRemoveBootEntryFilePathCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_, int row_, const FilePath::ANY &file_path_, QUndoCommand *parent) |
| 197 | : QUndoCommand(description, parent) |
| 198 | , model{model_} |
| 199 | , file_path{file_path_} |
| 200 | , index{index_} |
| 201 | , row{row_} |
| 202 | { |
| 203 | } |
| 204 | |
| 205 | int InsertRemoveBootEntryFilePathCommand::id() const |
| 206 | { |
nothing calls this directly
no outgoing calls
no test coverage detected