| 4 | #include <QtCore/QString> |
| 5 | |
| 6 | PresetDialog::PresetDialog(QWidget* parent) |
| 7 | : QDialog(parent) |
| 8 | { |
| 9 | setupUi(this); |
| 10 | |
| 11 | this->lineEditName->setStyleSheet("border-color: firebrick;"); |
| 12 | } |
| 13 | |
| 14 | void PresetDialog::accept() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected