1
0
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:
Paul Licameli
2017-10-27 20:35:52 -04:00
parent 151cbb1305
commit 228388a63c
46 changed files with 139 additions and 138 deletions

View File

@@ -23,7 +23,7 @@ class ShuttleGui;
class BatchPrefs final : public PrefsPanel
{
public:
BatchPrefs(wxWindow * parent);
BatchPrefs(wxWindow * parent, wxWindowID winid);
~BatchPrefs();
bool Commit() override;
@@ -37,6 +37,6 @@ private:
class BatchPrefsFactory final : public PrefsPanelFactory
{
public:
PrefsPanel *Create(wxWindow *parent) override;
PrefsPanel *operator () (wxWindow *parent, wxWindowID winid) override;
};
#endif