| 50 | { |
| 51 | public: |
| 52 | OptionCheckBox(const QString& text, bool bDefaultVal, const QString& saveName, bool* pbVar, |
| 53 | QWidget* pParent): |
| 54 | QCheckBox(text, pParent), |
| 55 | OptionBool(pbVar, bDefaultVal, saveName) |
| 56 | { |
| 57 | } |
| 58 | void setToDefault() override { setChecked(getDefault()); } |
| 59 | void setToCurrent() override { setChecked(getCurrent()); } |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected