mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 06:01:13 +02:00
Use IdentInterfaceSymbol for vendor strings, which are used in paths
This commit is contained in:
@@ -83,7 +83,7 @@ AudacityCommand::~AudacityCommand()
|
||||
|
||||
wxString AudacityCommand::GetPath(){ return BUILTIN_GENERIC_COMMAND_PREFIX + GetSymbol();}
|
||||
wxString AudacityCommand::GetName(){ return GetSymbol();}
|
||||
wxString AudacityCommand::GetVendor(){ return XO("Audacity");}
|
||||
IdentInterfaceSymbol AudacityCommand::GetVendor(){ return XO("Audacity");}
|
||||
wxString AudacityCommand::GetVersion(){ return AUDACITY_VERSION_STRING;}
|
||||
|
||||
|
||||
|
@@ -65,7 +65,7 @@ class AUDACITY_DLL_API AudacityCommand /* not final */ : public wxEvtHandler,
|
||||
//These four can be defaulted....
|
||||
wxString GetPath() override;
|
||||
wxString GetName() override;
|
||||
wxString GetVendor() override;
|
||||
IdentInterfaceSymbol GetVendor() override;
|
||||
wxString GetVersion() override;
|
||||
// virtual wxString GetFamily();
|
||||
|
||||
|
@@ -186,7 +186,7 @@ wxString BuiltinCommandsModule::GetName()
|
||||
return XO("Builtin Commands");
|
||||
}
|
||||
|
||||
wxString BuiltinCommandsModule::GetVendor()
|
||||
IdentInterfaceSymbol BuiltinCommandsModule::GetVendor()
|
||||
{
|
||||
return XO("The Audacity Team");
|
||||
}
|
||||
|
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user