| 92 | } |
| 93 | |
| 94 | void CopyInstanceDialog::on_iconButton_clicked() |
| 95 | { |
| 96 | IconPickerDialog dlg(this); |
| 97 | dlg.execWithSelection(InstIconKey); |
| 98 | |
| 99 | if (dlg.result() == QDialog::Accepted) |
| 100 | { |
| 101 | InstIconKey = dlg.selectedIconKey; |
| 102 | ui->iconButton->setIcon(APPLICATION->icons()->getIcon(InstIconKey)); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | void CopyInstanceDialog::on_instNameTextBox_textChanged(const QString &arg1) |
| 107 | { |
nothing calls this directly
no test coverage detected