| 258 | } |
| 259 | |
| 260 | bool AudacityFileConfig::DeleteGroup(const wxString& key) |
| 261 | { |
| 262 | auto res = wxFileConfig::DeleteGroup(key); |
| 263 | if (res) |
| 264 | { |
| 265 | mDirty = true; |
| 266 | } |
| 267 | return res; |
| 268 | } |
| 269 | |
| 270 | bool AudacityFileConfig::DeleteAll() |
| 271 | { |
no outgoing calls
no test coverage detected