1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-03 06:03:13 +02:00

bug 1741 Update target of audio import help button

This commit is contained in:
Steve Daulton 2018-02-26 13:08:56 +00:00
parent e5052a1973
commit cf9ab70406

View File

@ -4261,18 +4261,16 @@ bool AudacityProject::Import(const wxString &fileName, WaveTrackArray* pTrackArr
errorMessage);
if (!errorMessage.IsEmpty()) {
// Version that goes to internet...
// ShowErrorDialog(this, _("Error Importing"),
// errorMessage, wxT("http://audacity.sourceforge.net/help/faq?s=files&i=wma-proprietary"));
// Version that looks locally for the text.
// Error message derived from Importer::Import
// Additional help via a Help button links to the manual.
ShowErrorDialog(this, _("Error Importing"),
errorMessage, wxT("innerlink:wma-proprietary"));
errorMessage, wxT("Importing_Audio"));
}
if (!success)
return false;
wxGetApp().AddFileToHistory(fileName);
// no more errors, commit
cleanup.release();
}