| 1753 | } |
| 1754 | |
| 1755 | static void RefreshAllTitles(bool bShowProjectNumbers ) |
| 1756 | { |
| 1757 | for ( auto pProject : AllProjects{} ) { |
| 1758 | if ( !GetProjectFrame( *pProject ).IsIconized() ) { |
| 1759 | ProjectFileIO::Get( *pProject ).SetProjectTitle( |
| 1760 | bShowProjectNumbers ? pProject->GetProjectNumber() : -1 ); |
| 1761 | } |
| 1762 | } |
| 1763 | } |
| 1764 | |
| 1765 | TitleRestorer::TitleRestorer( |
| 1766 | wxTopLevelWindow &window, AudacityProject &project ) |
no test coverage detected