mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
Type aliases for some uses of ComponentInterfaceSymbol...
... to be replaced later with distinct types Also changing FamilyId => Family in function names Also NumericFormatId => NumericFormatSymbol
This commit is contained in:
@@ -117,7 +117,7 @@ ComponentInterfaceSymbol AudioUnitEffectsModule::GetSymbol()
|
||||
return XO("Audio Unit Effects");
|
||||
}
|
||||
|
||||
ComponentInterfaceSymbol AudioUnitEffectsModule::GetVendor()
|
||||
VendorSymbol AudioUnitEffectsModule::GetVendor()
|
||||
{
|
||||
return XO("The Audacity Team");
|
||||
}
|
||||
@@ -885,7 +885,7 @@ ComponentInterfaceSymbol AudioUnitEffect::GetSymbol()
|
||||
return mName;
|
||||
}
|
||||
|
||||
ComponentInterfaceSymbol AudioUnitEffect::GetVendor()
|
||||
VendorSymbol AudioUnitEffect::GetVendor()
|
||||
{
|
||||
return { mVendor };
|
||||
}
|
||||
@@ -932,7 +932,7 @@ EffectType AudioUnitEffect::GetType()
|
||||
return EffectTypeProcess;
|
||||
}
|
||||
|
||||
ComponentInterfaceSymbol AudioUnitEffect::GetFamilyId()
|
||||
EffectFamilySymbol AudioUnitEffect::GetFamily()
|
||||
{
|
||||
return AUDIOUNITEFFECTS_FAMILY;
|
||||
}
|
||||
|
@@ -54,14 +54,14 @@ public:
|
||||
|
||||
wxString GetPath() override;
|
||||
ComponentInterfaceSymbol GetSymbol() override;
|
||||
ComponentInterfaceSymbol GetVendor() override;
|
||||
VendorSymbol GetVendor() override;
|
||||
wxString GetVersion() override;
|
||||
wxString GetDescription() override;
|
||||
|
||||
// EffectComponentInterface implementation
|
||||
|
||||
EffectType GetType() override;
|
||||
ComponentInterfaceSymbol GetFamilyId() override;
|
||||
EffectFamilySymbol GetFamily() override;
|
||||
bool IsInteractive() override;
|
||||
bool IsDefault() override;
|
||||
bool IsLegacy() override;
|
||||
@@ -233,7 +233,7 @@ public:
|
||||
|
||||
wxString GetPath() override;
|
||||
ComponentInterfaceSymbol GetSymbol() override;
|
||||
ComponentInterfaceSymbol GetVendor() override;
|
||||
VendorSymbol GetVendor() override;
|
||||
wxString GetVersion() override;
|
||||
wxString GetDescription() override;
|
||||
|
||||
|
Reference in New Issue
Block a user