1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

rename function as AudacityProject::GetProjectName...

... So it does not hide inherited wxWindow::GetName().

And make it const.
This commit is contained in:
Paul Licameli
2019-04-21 17:33:18 -04:00
parent 8f55d55869
commit c46fbd919c
8 changed files with 14 additions and 14 deletions

View File

@@ -536,7 +536,7 @@ void OnPageSetup(const CommandContext &context)
void OnPrint(const CommandContext &context)
{
auto &project = context.project;
auto name = project.GetName();
auto name = project.GetProjectName();
auto tracks = project.GetTracks();
HandlePrint(&project, name, tracks, *project.GetTrackPanel());
}