1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-28 08:13:54 +01:00

PrefsPanel::Factory is a specialization of std::function...

... We don't need to define a class for it
This commit is contained in:
Paul Licameli
2019-01-13 20:55:52 -05:00
parent 8117ca8823
commit bf005c0dec
50 changed files with 175 additions and 290 deletions

View File

@@ -39,10 +39,6 @@ private:
};
/// A PrefsPanelFactory that creates one BatchPrefs panel.
class BatchPrefsFactory final : public PrefsPanelFactory
{
public:
PrefsPanel *operator () (wxWindow *parent, wxWindowID winid) override;
};
/// A PrefsPanel::Factory that creates one BatchPrefs panel.
extern PrefsPanel::Factory BatchPrefsFactory;
#endif