From 8eb39cd606c5b2f0bdc6fa0d53e8f39bf9652430 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Fri, 24 May 2019 12:23:57 -0400 Subject: [PATCH] Fix #include directives --- src/Project.h | 2 +- src/tracks/ui/BackgroundCell.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Project.h b/src/Project.h index 6dddb5561..03141a4ab 100644 --- a/src/Project.h +++ b/src/Project.h @@ -37,7 +37,7 @@ #include "import/ImportRaw.h" // defines TrackHolders -#include // to inherit +#include "xml/XMLTagHandler.h" // to inherit const int AudacityProjectTimerID = 5200; diff --git a/src/tracks/ui/BackgroundCell.h b/src/tracks/ui/BackgroundCell.h index 5e2fcb5be..7d964129d 100644 --- a/src/tracks/ui/BackgroundCell.h +++ b/src/tracks/ui/BackgroundCell.h @@ -11,7 +11,7 @@ Paul Licameli split from TrackPanel.cpp #ifndef __AUDACITY_BACKGROUND_CELL__ #define __AUDACITY_BACKGROUND_CELL__ -#include "ClientData.h" +#include "../../ClientData.h" #include "CommonTrackPanelCell.h" class AudacityProject;