1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-17 17:17:40 +02:00

Use #ifdef not #if in two places

This commit is contained in:
Paul Licameli 2017-04-26 16:27:21 -04:00
parent 05badc29e5
commit 5dd6a3558b
2 changed files with 2 additions and 2 deletions

View File

@ -479,7 +479,7 @@ TrackPanel::TrackPanel(wxWindow * parent, wxWindowID id,
mBandWidthCursor = MakeCursor( wxCURSOR_ARROW, BandWidthCursorXpm, 16, 16);
#endif
#if USE_MIDI
#ifdef USE_MIDI
mStretchMode = stretchCenter;
mStretching = false;
mStretched = false;

View File

@ -810,7 +810,7 @@ protected:
std::unique_ptr<wxCursor>
mBottomFrequencyCursor, mTopFrequencyCursor, mBandWidthCursor;
#endif
#if USE_MIDI
#ifdef USE_MIDI
std::unique_ptr<wxCursor>
mStretchCursor, mStretchLeftCursor, mStretchRightCursor;
#endif