1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 23:51:18 +01:00

Doxygen comments in generated theme header files

This commit is contained in:
Paul Licameli
2020-08-20 21:04:28 -04:00
parent f55b3f21cf
commit 0f98522b5c
6 changed files with 31 additions and 31 deletions

View File

@@ -583,14 +583,14 @@ int SourceOutputStream::OpenFile(const FilePath & Filename)
{
// DA: Naming of output sourcery
#ifdef EXPERIMENTAL_DA
File.Write( wxT("// DarkThemeAsCeeCode.h\r\n") );
File.Write( wxT("/// @file DarkThemeAsCeeCode.h\r\n") );
#else
File.Write( wxT("// ThemeAsCeeCode.h\r\n") );
File.Write( wxT("/// @file ThemeAsCeeCode.h\r\n") );
#endif
File.Write( wxT("//\r\n") );
File.Write( wxT("// This file was Auto-Generated.\r\n") );
File.Write( wxT("// It is included by Theme.cpp.\r\n") );
File.Write( wxT("// Only check this into Git if you've read and understood the guidelines!\r\n\r\n ") );
File.Write( wxT("/// @brief This file was Auto-Generated.\r\n") );
File.Write( wxT("///\r\n") );
File.Write( wxT("/// It is included by Theme.cpp.\r\n") );
File.Write( wxT("/// Only check this into Git if you've read and understood the guidelines!\r\n\r\n ") );
}
return bOk;
}