1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-17 14:11:13 +01:00

More const qualifiers and mutable members for drawing of tracks

This commit is contained in:
Paul Licameli
2016-02-27 13:04:34 -05:00
parent d097c7fad4
commit 6f63226291
5 changed files with 25 additions and 25 deletions

View File

@@ -63,9 +63,9 @@ class AUDACITY_DLL_API TrackArtist {
bool drawEnvelope, bool bigPoints, bool drawSliders,
bool hasSolo);
void DrawVRuler(Track *t, wxDC *dc, wxRect & rect);
void DrawVRuler(const Track *t, wxDC *dc, wxRect & rect);
void UpdateVRuler(Track *t, wxRect & rect);
void UpdateVRuler(const Track *t, wxRect & rect);
void SetInset(int left, int top, int right, int bottom);