1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Add Midi Prefs and Libraries Prefs help pages

This commit is contained in:
Steve Daulton 2017-05-14 19:01:45 +01:00
parent e16f6f9221
commit a532d99289
4 changed files with 12 additions and 0 deletions

View File

@ -239,6 +239,11 @@ bool LibraryPrefs::Apply()
return true;
}
wxString LibraryPrefs::HelpPageName()
{
return "Libraries_Preferences";
}
PrefsPanel *LibraryPrefsFactory::Create(wxWindow *parent)
{
wxASSERT(parent); // to justify safenew

View File

@ -28,6 +28,7 @@ class LibraryPrefs final : public PrefsPanel
LibraryPrefs(wxWindow * parent);
~LibraryPrefs();
bool Apply() override;
wxString HelpPageName() override;
private:
void Populate();

View File

@ -286,6 +286,11 @@ bool MidiIOPrefs::Validate()
return true;
}
wxString MidiIOPrefs::HelpPageName()
{
return "MIDI_Devices_Preferences";
}
PrefsPanel *MidiIOPrefsFactory::Create(wxWindow *parent)
{
wxASSERT(parent); // to justify safenew

View File

@ -33,6 +33,7 @@ class MidiIOPrefs final : public PrefsPanel
virtual ~MidiIOPrefs();
bool Apply() override;
bool Validate() override;
wxString HelpPageName() override;
private:
void Populate();