mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-09 13:12:17 +01:00
Fixes bug #1344 (mac build)
In addition, the Xcode project can now build against the 10.6 or 10.7 SDKs. All that is needed is to change the SDK version and the other settings will change automatically.
This commit is contained in:
@@ -865,7 +865,11 @@ 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)
|
||||
|
||||
Reference in New Issue
Block a user