| 69 | { |
| 70 | public: |
| 71 | OptionRadioButton(const QString& text, bool bDefaultVal, const QString& saveName, bool* pbVar, |
| 72 | QWidget* pParent): |
| 73 | QRadioButton(text, pParent), |
| 74 | OptionBool(pbVar, bDefaultVal, saveName) |
| 75 | { |
| 76 | } |
| 77 | |
| 78 | void setToDefault() override { setChecked(getDefault()); } |
| 79 | void setToCurrent() override { setChecked(getCurrent()); } |
nothing calls this directly
no outgoing calls
no test coverage detected