1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-07 06:55:52 +01:00

Type alias ManualPageID for wxString used in many places...

... eliminating many direct mentions of wxString.  A real type distinction will
be made next.
This commit is contained in:
Paul Licameli
2021-06-06 12:18:35 -04:00
parent 3c50935484
commit cfbdd2d22e
137 changed files with 200 additions and 198 deletions

View File

@@ -41,7 +41,7 @@ class ApplyMacroDialog : public wxDialogWrapper {
virtual void OnCancel(wxCommandEvent & event);
virtual void OnHelp(wxCommandEvent & event);
virtual wxString GetHelpPageName() {return "Apply_Macro";};
virtual ManualPageID GetHelpPageName() {return "Apply_Macro";}
void PopulateMacros();
static CommandID MacroIdOfName( const wxString & MacroName );
@@ -87,9 +87,9 @@ private:
void OnApplyToFiles(wxCommandEvent & event) override;
void OnCancel(wxCommandEvent &event) override;
virtual wxString GetHelpPageName() override {return
virtual ManualPageID GetHelpPageName() override {return
mbExpanded ? "Manage_Macros"
: "Apply_Macro";};
: "Apply_Macro";}
void PopulateList();
void AddItem(const CommandID &command, wxString const &params);