1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

Fix bug 1733

Update Help button link.
This commit is contained in:
Steve Daulton 2017-09-04 11:19:47 +01:00
parent 5d4ddbc424
commit e238845ddb
2 changed files with 3 additions and 3 deletions

View File

@ -2625,7 +2625,7 @@ void Effect::Preview(bool dryOnly)
else {
ShowErrorDialog(FocusDialog, _("Error"),
_("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."),
wxT("faq_errors.html#sound_device"), false);
wxT("Error_opening_sound_device"), false);
}
}
}

View File

@ -718,7 +718,7 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion,
// Show error message if stream could not be opened
ShowErrorDialog(this, _("Error"),
_("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."),
wxT("faq_errors.html#sound_device"), false);
wxT("Error_opening_sound_device"), false);
});
}
}
@ -1200,7 +1200,7 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt)
// Show error message if stream could not be opened
ShowErrorDialog(this, _("Error"),
_("Error opening sound device.\nTry changing the audio host, recording device and the project sample rate."),
wxT("faq_errors.html#sound_device"), false);
wxT("Error_opening_sound_device"), false);
}
}
}