| 1149 | } |
| 1150 | |
| 1151 | std::optional<bool> WidgetSettings::checked(const QAbstractButton* w) const |
| 1152 | { |
| 1153 | warnIfNotCheckable(w); |
| 1154 | return getOptional<bool>(m_Settings, "Widgets", checkedSettingName(w)); |
| 1155 | } |
| 1156 | |
| 1157 | void WidgetSettings::saveChecked(const QAbstractButton* w) |
| 1158 | { |
nothing calls this directly
no test coverage detected