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

Fix mac build breakage of 3b312f9d1b ...

... Warnings have been treated as errors in Xcode project settings since 2.3.1,
and there ware warnings about using override on only some but not all overridden
virtual functions in the PrefsPanel subclasses.
This commit is contained in:
Paul Licameli
2019-04-19 14:20:57 -04:00
parent c1a8c7a76e
commit 9eab996489
22 changed files with 44 additions and 44 deletions

View File

@@ -27,8 +27,8 @@ class DevicePrefs final : public PrefsPanel
public:
DevicePrefs(wxWindow * parent, wxWindowID winid);
virtual ~DevicePrefs();
virtual ComponentInterfaceSymbol GetSymbol();
virtual wxString GetDescription();
ComponentInterfaceSymbol GetSymbol() override;
wxString GetDescription() override;
bool Commit() override;
wxString HelpPageName() override;