1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 08:27:13 +01:00

Future subclasses of PrefsDialog may choose the preferred page by other means.

This commit is contained in:
Paul Licameli
2015-06-17 15:52:29 -04:00
parent 2361758316
commit 7b01339e51
5 changed files with 71 additions and 25 deletions

View File

@@ -1605,7 +1605,7 @@ bool AudacityApp::InitTempDir()
// Failed
wxMessageBox(_("Audacity could not find a place to store temporary files.\nPlease enter an appropriate directory in the preferences dialog."));
PrefsDialog dialog(NULL);
GlobalPrefsDialog dialog(NULL);
dialog.ShowTempDirPage();
dialog.ShowModal();
@@ -2132,7 +2132,7 @@ void AudacityApp::OnMenuPreferences(wxCommandEvent & event)
// all platforms.
if(gAudacityProjects.GetCount() == 0) {
PrefsDialog dialog(NULL /* parent */ );
GlobalPrefsDialog dialog(NULL /* parent */ );
dialog.ShowModal();
}
else