| 67 | } |
| 68 | |
| 69 | void removeSection(QSettings& settings, const QString& section) |
| 70 | { |
| 71 | removeImpl(settings, section, section, ""); |
| 72 | } |
| 73 | |
| 74 | ScopedGroup::ScopedGroup(QSettings& s, const QString& name) |
| 75 | : m_settings(s), m_name(name) |
no test coverage detected