1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-22 16:41:18 +01:00

use override

This commit is contained in:
Paul Licameli
2017-10-01 13:28:04 -04:00
parent 9612e3d971
commit 31231a54d2
33 changed files with 100 additions and 97 deletions

View File

@@ -187,67 +187,67 @@ public:
// EffectClientInterface implementation
wxString GetPath()
wxString GetPath() override
{
return mPath;
}
wxString GetSymbol()
wxString GetSymbol() override
{
return mName;
}
wxString GetName()
wxString GetName() override
{
return GetSymbol();
}
wxString GetVendor()
wxString GetVendor() override
{
return mVendor;
}
wxString GetVersion()
wxString GetVersion() override
{
return mVersion;
}
wxString GetDescription()
wxString GetDescription() override
{
return mDescription;
}
wxString GetFamily()
wxString GetFamily() override
{
return VSTPLUGINTYPE;
}
EffectType GetType()
EffectType GetType() override
{
return mType;
}
bool IsInteractive()
bool IsInteractive() override
{
return mInteractive;
}
bool IsDefault()
bool IsDefault() override
{
return false;
}
bool IsLegacy()
bool IsLegacy() override
{
return false;
}
bool SupportsRealtime()
bool SupportsRealtime() override
{
return mType == EffectTypeProcess;
}
bool SupportsAutomation()
bool SupportsAutomation() override
{
return mAutomatable;
}