1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-23 07:58:05 +02:00

Revert "More deconsting to satisfy Travis"

This reverts commit 90d03f835179c407d32d046c060ec96606abdab1.
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) {}
};