mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 00:30:07 +02:00
Fix broken Windows build.
Was broken on MSVC 2013, due to a compiler bug.
This commit is contained in:
parent
55dc096896
commit
f67cc7af25
@ -234,10 +234,14 @@ private:
|
|||||||
|
|
||||||
TrackPanel * pParent;
|
TrackPanel * pParent;
|
||||||
static wxFont gFont;
|
static wxFont gFont;
|
||||||
static std::unique_ptr<LWSlider>
|
// These are on separate lines to work around an MSVC 2013 compiler bug.
|
||||||
gGainCaptured, gPanCaptured, gGain, gPan;
|
static std::unique_ptr<LWSlider> gGainCaptured;
|
||||||
|
static std::unique_ptr<LWSlider> gPanCaptured;
|
||||||
|
static std::unique_ptr<LWSlider> gGain;
|
||||||
|
static std::unique_ptr<LWSlider> gPan;
|
||||||
#ifdef EXPERIMENTAL_MIDI_OUT
|
#ifdef EXPERIMENTAL_MIDI_OUT
|
||||||
static std::unique_ptr<LWSlider> gVelocityCaptured, gVelocity;
|
static std::unique_ptr<LWSlider> gVelocityCaptured;
|
||||||
|
static std::unique_ptr<LWSlider> gVelocity;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
friend class TrackPanel;
|
friend class TrackPanel;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user