| 118 | } |
| 119 | |
| 120 | void CopyInstanceDialog::on_iconButton_clicked() |
| 121 | { |
| 122 | IconPickerDialog dlg(this); |
| 123 | dlg.execWithSelection(InstIconKey); |
| 124 | |
| 125 | if (dlg.result() == QDialog::Accepted) |
| 126 | { |
| 127 | InstIconKey = dlg.selectedIconKey; |
| 128 | ui->iconButton->setIcon(APPLICATION->icons()->getIcon(InstIconKey)); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void CopyInstanceDialog::on_instNameTextBox_textChanged(const QString &arg1) |
| 133 | { |
nothing calls this directly
no test coverage detected