1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Fix Windows build - fix include paths

This commit is contained in:
David Bailes 2019-06-21 09:29:32 +01:00
parent f75bf45478
commit 660b8c07ad
2 changed files with 6 additions and 6 deletions

View File

@ -677,7 +677,7 @@ void LabelTrackView::CalcHighlightXs(int *x1, int *x2) const
getXPos(labelStruct, dc, x2, pos2);
}
#include "tracks/labeltrack/ui/LabelGlyphHandle.h"
#include "LabelGlyphHandle.h"
// TODO: don't rely on the global ::GetActiveProject() to find this.
// Rather, give TrackPanelCell a drawing function and pass context into it.
namespace {
@ -694,8 +694,8 @@ namespace {
}
}
#include "TrackPanelDrawingContext.h"
#include "tracks/labeltrack/ui/LabelTextHandle.h"
#include "../../../TrackPanelDrawingContext.h"
#include "LabelTextHandle.h"
/// Draw calls other functions to draw the LabelTrack.
/// @param dc the device context
@ -2005,7 +2005,7 @@ void LabelTrackView::CreateCustomGlyphs()
mbGlyphsReady=true;
}
#include "LabelDialog.h"
#include "../../../LabelDialog.h"
void LabelTrackView::DoEditLabels
(AudacityProject &project, LabelTrack *lt, int index)

View File

@ -157,8 +157,8 @@ enum : int {
};
#endif
#include "tracks/playabletrack/notetrack/ui/NoteTrackButtonHandle.h"
#include "tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.h"
#include "NoteTrackButtonHandle.h"
#include "NoteTrackSliderHandles.h"
namespace {
void GetMidiControlsHorizontalBounds( const wxRect &rect, wxRect &dest )