From e669b365f13a7bc7b5a950ee30b6251086b36567 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Sat, 18 Jul 2020 09:25:10 -0500 Subject: [PATCH] AUP3: Remove unneeded error message --- src/ProjectFileManager.cpp | 3 +-- src/import/Import.cpp | 9 --------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/ProjectFileManager.cpp b/src/ProjectFileManager.cpp index ab1185cff..058badb23 100644 --- a/src/ProjectFileManager.cpp +++ b/src/ProjectFileManager.cpp @@ -97,8 +97,7 @@ const Pair helpURLTable[] = { "mismatched tag", "#mismatched" }, -// These two errors with FAQ entries are reported elsewhere, not here.... -//#[[#import-error|Error Importing: Aup is an Audacity Project file. Use the File > Open command]] +// This error with FAQ entry is reported elsewhere, not here.... //#[[#corrupt|Error Opening File or Project: File may be invalid or corrupted]] }; diff --git a/src/import/Import.cpp b/src/import/Import.cpp index debc9ed29..af6358d15 100644 --- a/src/import/Import.cpp +++ b/src/import/Import.cpp @@ -797,15 +797,6 @@ bool Importer::Import( AudacityProject &project, return false; } - // Audacity project - if (extension.IsSameAs(wxT("aup3"), false)) { - errorMessage = XO( -/* i18n-hint: %s will be the filename */ -"\"%s\" is an Audacity Project file. \nUse the 'File > Open' command to open Audacity Projects.") - .Format( fName ); - return false; - } - if( !wxFileExists(fName)){ errorMessage = XO( "File \"%s\" not found.").Format( fName ); return false;