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:
@@ -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 ¶ms);
|
||||
|
||||
Reference in New Issue
Block a user