mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 16:48:44 +02:00
Revert "Fix Travis Build (const in structure)"
This reverts commit 13c17d3d5da5fdaf5d0f0ea99886b06194f4fc41.
This commit is contained in:
parent
5f164649c3
commit
ca30328e8f
@ -1636,8 +1636,8 @@ struct ClipParameters
|
|||||||
namespace {
|
namespace {
|
||||||
struct WavePortion {
|
struct WavePortion {
|
||||||
wxRect rect;
|
wxRect rect;
|
||||||
/*const*/ double averageZoom;
|
const double averageZoom;
|
||||||
/*const*/ bool inFisheye;
|
const bool inFisheye;
|
||||||
WavePortion(int x, int y, int w, int h, double zoom, bool i)
|
WavePortion(int x, int y, int w, int h, double zoom, bool i)
|
||||||
: rect(x, y, w, h), averageZoom(zoom), inFisheye(i)
|
: rect(x, y, w, h), averageZoom(zoom), inFisheye(i)
|
||||||
{}
|
{}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user