| 29 | } |
| 30 | |
| 31 | void Setting::Initialize(SettingType type_, void* data_, const char* name_, |
| 32 | const char* group_, const char* label_, const char* helpText_) |
| 33 | { |
| 34 | type = type_; |
| 35 | data = data_; |
| 36 | name = name_; |
| 37 | group = group_; |
| 38 | label = label_; |
| 39 | helpText = helpText_; |
| 40 | changed = false; |
| 41 | |
| 42 | initialized = true; |
| 43 | } |
| 44 | |
| 45 | void Setting::SetReadOnly(bool readOnly) |
| 46 | { |
no test coverage detected