1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Fix warnings about missing "override"

This commit is contained in:
Paul Licameli 2021-08-08 19:07:34 -04:00
parent 5f7f180a6a
commit aa54bbd93a

View File

@ -1345,7 +1345,8 @@ public:
~EmptyPanelRect() { }
void Draw(TrackPanelDrawingContext& context, const wxRect& rect, unsigned iPass)
void Draw(TrackPanelDrawingContext& context,
const wxRect& rect, unsigned iPass) override
{
if (iPass == TrackArtist::PassBackground)
{
@ -1362,7 +1363,8 @@ public:
return mTrack;
}
std::vector<UIHandlePtr> HitTest(const TrackPanelMouseState& state, const AudacityProject* pProject)
std::vector<UIHandlePtr> HitTest(const TrackPanelMouseState& state,
const AudacityProject* pProject) override
{
return {};
}