1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-18 14:41:20 +01:00

TrackArtist needs only Track, not WaveTrack...

... and clean up some other things
This commit is contained in:
Paul Licameli
2019-07-21 21:19:46 -04:00
parent b76ff54756
commit b585a3121f

View File

@@ -45,17 +45,14 @@ audio tracks.
#include "AColor.h" #include "AColor.h"
#include "AllThemeResources.h" #include "AllThemeResources.h"
#include "Prefs.h"
#include "prefs/GUIPrefs.h" #include "prefs/GUIPrefs.h"
#include "Track.h"
#include "TrackPanelDrawingContext.h" #include "TrackPanelDrawingContext.h"
#include "ViewInfo.h" #include "ViewInfo.h"
#include "WaveTrack.h"
#include "prefs/GUISettings.h" #include "prefs/GUISettings.h"
#include "prefs/TracksPrefs.h" #include "prefs/TracksPrefs.h"
#include <wx/dc.h>
TrackArtist::TrackArtist( TrackPanel *parent_ ) TrackArtist::TrackArtist( TrackPanel *parent_ )
: parent( parent_ ) : parent( parent_ )
{ {
@@ -237,12 +234,6 @@ void TrackArt::DrawNegativeOffsetTrackArrows(
} }
// Headers needed only for experimental drawing below
//#include "tracks/ui/TimeShiftHandle.h"
//#include "tracks/playabletrack/wavetrack/ui/CutlineHandle.h"
namespace {
}
#ifdef __GNUC__ #ifdef __GNUC__
#define CONST #define CONST
#else #else