1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-28 15:57:03 +01:00

More deconsting to satisfy Travis

const in struct not supported by Travis version of gcc.
This commit is contained in:
James Crook
2015-07-19 19:51:30 +01:00
parent 13c17d3d5d
commit 90d03f8351

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) {}
};