Remove unnecessary #include directives in TrackInfo.cpp

This commit is contained in:
Paul Licameli 2019-06-21 12:19:04 -04:00
parent 3e4480ce6f
commit a8e2b22ea2
1 changed files with 3 additions and 4 deletions

View File

@ -2,7 +2,7 @@
Audacity: A Digital Audio Editor
TrackInfo.h
TrackInfo.cpp
Paul Licameli split from TrackPanel.cpp
@ -35,13 +35,11 @@ Paul Licameli split from TrackPanel.cpp
#include "AColor.h"
#include "AllThemeResources.h"
#include "NoteTrack.h"
#include "Project.h"
#include "Track.h"
#include "TrackPanelDrawingContext.h"
#include "ViewInfo.h"
#include "WaveTrack.h"
#include "tracks/ui/TrackView.h"
#include "widgets/ASlider.h"
static wxString gSoloPref;
bool TrackInfo::HasSoloButton()
@ -638,3 +636,4 @@ void TrackInfo::UpdatePrefs( wxWindow *pParent )
fontSize--;
} while (textWidth >= allowableWidth);
}