From e238845ddb9e9bc1ee31eb5e9e6b5f6b89e7d219 Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Mon, 4 Sep 2017 11:19:47 +0100 Subject: [PATCH] Fix bug 1733 Update Help button link. --- src/effects/Effect.cpp | 2 +- src/toolbars/ControlToolBar.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/effects/Effect.cpp b/src/effects/Effect.cpp index 61f7a15d7..a1b315490 100644 --- a/src/effects/Effect.cpp +++ b/src/effects/Effect.cpp @@ -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); } } } diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 90c310d8f..ef6671f11 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -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); } } }