| 1208 | void EditUi::DisableChangeButtons(bool disable) |
| 1209 | { |
| 1210 | BindSafeIter(bind_chg_button, [this, disable](QPushButton* p, size_t) { p->setDisabled(disable); }); |
| 1211 | } |
| 1212 | |
| 1213 | |
| 1214 | void EditUi::setWindowTitle(const QString& title) |
| 1215 | { |
| 1216 | QDialog::setWindowTitle(title); |
| 1217 | ui.title_label->setText(title); |
| 1218 | } |
| 1219 | void EditUi::SetTabCurrent(int index) |
| 1220 | { |
nothing calls this directly
no test coverage detected