mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
Add missing return statements.
Sorry about that...extracted the change from a "working tree" and missed 'em.
This commit is contained in:
parent
3d9d6836ce
commit
de0ec7e5e5
@ -1251,6 +1251,8 @@ bool PluginManager::RemoveSharedConfigSubgroup(const PluginID & ID, const wxStri
|
||||
{
|
||||
GetSettings()->Flush();
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool PluginManager::RemoveSharedConfig(const PluginID & ID, const wxString & group, const wxString & key)
|
||||
@ -1260,6 +1262,8 @@ bool PluginManager::RemoveSharedConfig(const PluginID & ID, const wxString & gro
|
||||
{
|
||||
GetSettings()->Flush();
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool PluginManager::GetPrivateConfigSubgroups(const PluginID & ID, const wxString & group, wxArrayString & subgroups)
|
||||
@ -1334,6 +1338,8 @@ bool PluginManager::RemovePrivateConfigSubgroup(const PluginID & ID, const wxStr
|
||||
{
|
||||
GetSettings()->Flush();
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool PluginManager::RemovePrivateConfig(const PluginID & ID, const wxString & group, const wxString & key)
|
||||
@ -1343,6 +1349,8 @@ bool PluginManager::RemovePrivateConfig(const PluginID & ID, const wxString & gr
|
||||
{
|
||||
GetSettings()->Flush();
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
Loading…
x
Reference in New Issue
Block a user