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:
parent
c4825967de
commit
13c17d3d5d
@ -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)
|
||||
{}
|
||||
|
Loading…
x
Reference in New Issue
Block a user