| 248 | } |
| 249 | |
| 250 | bool AudacityFileConfig::DeleteEntry(const wxString& key, bool bDeleteGroupIfEmpty) |
| 251 | { |
| 252 | auto res = wxFileConfig::DeleteEntry(key, bDeleteGroupIfEmpty); |
| 253 | if (res) |
| 254 | { |
| 255 | mDirty = true; |
| 256 | } |
| 257 | return res; |
| 258 | } |
| 259 | |
| 260 | bool AudacityFileConfig::DeleteGroup(const wxString& key) |
| 261 | { |
no outgoing calls
no test coverage detected