From a57b63c63f4d76976960847ef95640d368f0250b Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Wed, 27 May 2020 20:18:56 -0400 Subject: [PATCH] More unnecessary includes indicating hidden link dependencies... ... This brings the big s.c.c. to 88 files --- src/TimerRecordDialog.cpp | 2 +- src/TrackPanelCell.h | 3 +++ src/TrackPanelDrawable.h | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/TimerRecordDialog.cpp b/src/TimerRecordDialog.cpp index cca796bde..8bd138cd8 100644 --- a/src/TimerRecordDialog.cpp +++ b/src/TimerRecordDialog.cpp @@ -85,7 +85,7 @@ enum { const int kSlowTimerInterval = 1000; // ms // This timer interval is used in some busy-wait loops and is much shorter. -const int kTimerInterval = 50; // ms +// const int kTimerInterval = 50; // ms static double wxDateTime_to_AudacityTime(wxDateTime& dateTime) { diff --git a/src/TrackPanelCell.h b/src/TrackPanelCell.h index 46540cbc8..cc0586d14 100644 --- a/src/TrackPanelCell.h +++ b/src/TrackPanelCell.h @@ -136,4 +136,7 @@ public: AudacityProject *project); }; +// Unnecessary #include to indicate otherwise hidden link dependencies +#include "TrackPanel.h" + #endif diff --git a/src/TrackPanelDrawable.h b/src/TrackPanelDrawable.h index 7d5d84998..ca99c5ec4 100644 --- a/src/TrackPanelDrawable.h +++ b/src/TrackPanelDrawable.h @@ -51,4 +51,7 @@ public: } }; +// Unnecessary #include to indicate otherwise hidden link dependencies +#include "TrackPanel.h" + #endif