mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Follow wxWidgets argument conventions for PrefsPanel factories
This commit is contained in:
@@ -24,7 +24,7 @@ class ShuttleGui;
|
||||
class WarningsPrefs final : public PrefsPanel
|
||||
{
|
||||
public:
|
||||
WarningsPrefs(wxWindow * parent);
|
||||
WarningsPrefs(wxWindow * parent, wxWindowID winid);
|
||||
~WarningsPrefs();
|
||||
bool Commit() override;
|
||||
wxString HelpPageName() override;
|
||||
@@ -37,6 +37,6 @@ class WarningsPrefs final : public PrefsPanel
|
||||
class WarningsPrefsFactory final : public PrefsPanelFactory
|
||||
{
|
||||
public:
|
||||
PrefsPanel *Create(wxWindow *parent) override;
|
||||
PrefsPanel *operator () (wxWindow *parent, wxWindowID winid) override;
|
||||
};
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user