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:
@@ -85,7 +85,7 @@ public:
|
|||||||
void ZoomBy(double multiplier);
|
void ZoomBy(double multiplier);
|
||||||
|
|
||||||
struct Interval {
|
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)
|
Interval(wxInt64 p, double z, bool i)
|
||||||
: position(p), averageZoom(z), inFisheye(i) {}
|
: position(p), averageZoom(z), inFisheye(i) {}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user