1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00

Revert "Fix Travis Build (const in structure)"

This reverts commit 13c17d3d5da5fdaf5d0f0ea99886b06194f4fc41.
This commit is contained in:
Paul Licameli 2015-07-26 19:08:33 -04:00
parent 5f164649c3
commit ca30328e8f

View File

@ -1636,8 +1636,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)
{}