| 57 | } |
| 58 | |
| 59 | void ShowTypes::load() |
| 60 | { |
| 61 | QSettings settings; |
| 62 | mVisible[ShowStyle] = settings.value(SETTINGS_SHOW_STYLE, true).toBool(); |
| 63 | mVisible[ShowErrors] = settings.value(SETTINGS_SHOW_ERRORS, true).toBool(); |
| 64 | mVisible[ShowWarnings] = settings.value(SETTINGS_SHOW_WARNINGS, true).toBool(); |
| 65 | mVisible[ShowPortability] = settings.value(SETTINGS_SHOW_PORTABILITY, true).toBool(); |
| 66 | mVisible[ShowPerformance] = settings.value(SETTINGS_SHOW_PERFORMANCE, true).toBool(); |
| 67 | mVisible[ShowInformation] = settings.value(SETTINGS_SHOW_INFORMATION, true).toBool(); |
| 68 | } |
| 69 | |
| 70 | void ShowTypes::save() const |
| 71 | { |
no test coverage detected