1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 17:09:26 +02:00

Add some unnecessary #include directives...

... They are not necessary to build, but the do indicate some link
dependencies to fix, that were not shown in results of scripts/graph.pl.

The link dependencies exist because the header declaring some name did not
correspond to the .cpp file that defined it.
This commit is contained in:
Paul Licameli 2020-05-27 18:27:29 -04:00
parent 446da212f1
commit 226a80140a
3 changed files with 9 additions and 0 deletions

View File

@ -120,4 +120,7 @@ struct RegisteredMenuItemEnabler{
RegisteredMenuItemEnabler( const MenuItemEnabler &enabler );
};
// Unnecessary #include to indicate otherwise hidden link dependencies
#include "Menus.h"
#endif

View File

@ -182,4 +182,7 @@ private:
const FileExtensions mExtensions;
};
// Unnecessary #include to indicate otherwise hidden link dependencies
#include "Import.h"
#endif

View File

@ -102,4 +102,7 @@ class PrefsPanel /* not final */ : public wxPanelWrapper, ComponentInterface
virtual void Cancel();
};
// Unnecessary #include to indicate otherwise hidden link dependencies
#include "PrefsDialog.h"
#endif