1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Use IdentInterfaceSymbol for vendor strings, which are used in paths

This commit is contained in:
Paul Licameli
2018-03-29 14:56:52 -04:00
parent d9606e8cdf
commit 0394660e9e
28 changed files with 44 additions and 43 deletions

View File

@@ -85,7 +85,7 @@ wxString VampEffectsModule::GetName()
return XO("Vamp Effects");
}
wxString VampEffectsModule::GetVendor()
IdentInterfaceSymbol VampEffectsModule::GetVendor()
{
return XO("The Audacity Team");
}

View File

@@ -33,7 +33,7 @@ public:
wxString GetPath() override;
wxString GetSymbol() override;
wxString GetName() override;
wxString GetVendor() override;
IdentInterfaceSymbol GetVendor() override;
wxString GetVersion() override;
wxString GetDescription() override;

View File

@@ -106,7 +106,7 @@ wxString VampEffect::GetName()
return GetSymbol();
}
wxString VampEffect::GetVendor()
IdentInterfaceSymbol VampEffect::GetVendor()
{
return wxString::FromUTF8(mPlugin->getMaker().c_str());
}

View File

@@ -49,7 +49,7 @@ public:
wxString GetPath() override;
wxString GetSymbol() override;
wxString GetName() override;
wxString GetVendor() override;
IdentInterfaceSymbol GetVendor() override;
wxString GetVersion() override;
wxString GetDescription() override;