| 21 | Q_DECLARE_METATYPE(QPersistentModelIndex) |
| 22 | |
| 23 | EntryDialog::EntryDialog(const QAbstractItemModel *model, QWidget *parent, Qt::WindowFlags f) |
| 24 | : QDialog(parent, f) |
| 25 | , indexList(QList<QPersistentModelIndex>()) |
| 26 | , ui(new Ui::EntryDialog) |
| 27 | { |
| 28 | ui->setupUi(this); |
| 29 | this->model = model; |
| 30 | init(); |
| 31 | } |
| 32 | |
| 33 | void EntryDialog::init() |
| 34 | { |