1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Fix Travis Build (const in structure)

Not supported by version of gcc used by travis.
This commit is contained in:
James Crook 2015-07-19 19:01:15 +01:00
parent c4825967de
commit 13c17d3d5d

View File

@ -1637,8 +1637,8 @@ struct ClipParameters
namespace {
struct WavePortion {
wxRect rect;
const double averageZoom;
const bool inFisheye;
/*const*/ double averageZoom;
/*const*/ bool inFisheye;
WavePortion(int x, int y, int w, int h, double zoom, bool i)
: rect(x, y, w, h), averageZoom(zoom), inFisheye(i)
{}