| 4 | #include <QMessageBox> |
| 5 | |
| 6 | SearchDialog::SearchDialog(QHexEdit *hexEdit, QWidget *parent) : |
| 7 | QDialog(parent), |
| 8 | ui(new Ui::SearchDialog) |
| 9 | { |
| 10 | ui->setupUi(this); |
| 11 | _hexEdit = hexEdit; |
| 12 | } |
| 13 | |
| 14 | SearchDialog::~SearchDialog() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected