From 9c0f933b0c5381da786a684e044f0f4e2e4dbd77 Mon Sep 17 00:00:00 2001 From: martynshaw99 Date: Fri, 3 Dec 2010 00:57:56 +0000 Subject: [PATCH] Improvements to the missing EQCurves.xml error dialog. --- src/effects/Equalization.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/effects/Equalization.cpp b/src/effects/Equalization.cpp index bae994d1a..2fdcee3ca 100644 --- a/src/effects/Equalization.cpp +++ b/src/effects/Equalization.cpp @@ -985,9 +985,10 @@ void EqualizationDialog::LoadCurves(wxString fileName, bool append) wxString fullFn = fn.GetFullPath(); if( !fn.FileExists() ) { // Default file not found. Give up and advise user - wxString errorMessage = _("EQCurves.xml not found on your system.\nPlease press 'help' to visit the download page."); + wxString errorMessage; + errorMessage.Printf(_("EQCurves.xml not found on your system.\nPlease press 'help' to visit the download page.\n\nSave the curves at %s"), FileNames::DataDir().c_str()); ShowErrorDialog(this, _("EQCurves.xml missing"), - errorMessage, wxT("http://wiki.audacityteam.org/wiki/Default_EQCurves")); + errorMessage, wxT("http://wiki.audacityteam.org/wiki/EQCurvesDownload")); mCurves.Add( _("unnamed") ); // we still need a default curve to use return; }