1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-22 14:11:41 +01:00

Revert "More deconsting to satisfy Travis"

This reverts commit 90d03f8351.
This commit is contained in:
Paul Licameli
2015-07-26 19:08:55 -04:00
parent ca30328e8f
commit 06d01ee424

View File

@@ -85,7 +85,7 @@ public:
void ZoomBy(double multiplier);
struct Interval {
/* const */ wxInt64 position; /* const */ double averageZoom; /* const */ bool inFisheye;
const wxInt64 position; const double averageZoom; const bool inFisheye;
Interval(wxInt64 p, double z, bool i)
: position(p), averageZoom(z), inFisheye(i) {}
};