1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-16 08:37:42 +02:00

Remove some nested #include from TrackPanelAx.h

This commit is contained in:
Paul Licameli 2018-11-20 06:56:37 -05:00
parent 71036bed01
commit 43899da80d
3 changed files with 6 additions and 2 deletions

View File

@ -29,6 +29,7 @@
#include <wx/intl.h>
#include "Track.h"
#include "TrackPanel.h"
#include "Internat.h"
TrackPanelAx::TrackPanelAx( wxWindow *window )

View File

@ -11,6 +11,7 @@
#ifndef __AUDACITY_TRACK_PANEL_ACCESSIBILITY__
#define __AUDACITY_TRACK_PANEL_ACCESSIBILITY__
#include <memory>
#include <wx/window.h>
#include <wx/panel.h>
@ -19,8 +20,8 @@
#include "widgets/WindowAccessible.h"
#endif
#include "Track.h"
#include "TrackPanel.h"
class Track;
class TrackPanel;
class TrackPanelAx final
#if wxUSE_ACCESSIBILITY

View File

@ -15,7 +15,9 @@ Paul Licameli split from TrackPanel.cpp
#include "../../AColor.h"
#include "../../AdornedRulerPanel.h"
#include "../../Project.h"
#include "../../Track.h"
#include "../../TrackPanelAx.h"
#include "../../TrackPanel.h"
#include "../../ViewInfo.h"
#include <wx/dc.h>