1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Shuttle and ShuttleParams class hierarchies are separate...

... despite the name similarities, there was no commonality of purpose.

We can use multiple inheritance from the two, treating each as a mixin, if
need arises.
This commit is contained in:
Paul Licameli
2019-02-05 15:45:49 -05:00
parent 0c24d0d47a
commit 4c3140ae05
2 changed files with 2 additions and 7 deletions

View File

@@ -306,11 +306,6 @@ bool ShuttleCli::ExchangeWithMaster(const wxString & Name)
}
bool ShuttleParams::ExchangeWithMaster(const wxString & WXUNUSED(Name))
{
return true;
}
#ifdef _MSC_VER
// If this is compiled with MSVC (Visual Studio)
#pragma warning( push )