| 4 | #include "commands.h" |
| 5 | |
| 6 | InsertRemoveBootEntryCommand::InsertRemoveBootEntryCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_parent_, int index_, const BootEntry &entry_, QUndoCommand *parent) |
| 7 | : QUndoCommand(description, parent) |
| 8 | , model{model_} |
| 9 | , index_parent{index_parent_} |
| 10 | , entry{entry_} |
| 11 | , index{index_} |
| 12 | { |
| 13 | } |
| 14 | |
| 15 | int InsertRemoveBootEntryCommand::id() const |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected