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