mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-28 08:13:54 +01:00
Follow wxWidgets argument conventions for PrefsPanel factories
This commit is contained in:
@@ -26,7 +26,7 @@ class ShuttleGui;
|
||||
class DevicePrefs final : public PrefsPanel
|
||||
{
|
||||
public:
|
||||
DevicePrefs(wxWindow * parent);
|
||||
DevicePrefs(wxWindow * parent, wxWindowID winid);
|
||||
virtual ~DevicePrefs();
|
||||
bool Commit() override;
|
||||
wxString HelpPageName() override;
|
||||
@@ -58,7 +58,7 @@ class DevicePrefs final : public PrefsPanel
|
||||
class DevicePrefsFactory final : public PrefsPanelFactory
|
||||
{
|
||||
public:
|
||||
PrefsPanel *Create(wxWindow *parent) override;
|
||||
PrefsPanel *operator () (wxWindow *parent, wxWindowID winid) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user