1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Remove most uses of AUDACITY_OLD_STD

This commit is contained in:
Paul Licameli
2018-04-16 12:50:14 -04:00
parent 56c42e870e
commit 7a0475e39f
23 changed files with 12 additions and 120 deletions

View File

@@ -986,11 +986,7 @@ wxT("POSSIBILITY OF SUCH DAMAGES.\n"));
void AboutDialog::AddCredit(wxString &&description, Role role)
{
#ifdef __AUDACITY_OLD_STD__
creditItems.push_back(AboutDialogCreditItem{ std::move(description), role });
#else
creditItems.emplace_back(std::move(description), role);
#endif
}
wxString AboutDialog::GetCreditsByRole(AboutDialog::Role role)