From b9725a6c13eb187eec6905472657669322109c2e Mon Sep 17 00:00:00 2001 From: mchinen Date: Wed, 1 Jun 2011 18:22:06 +0000 Subject: [PATCH] Bug 396 (P4) Fix double dialog with Files Missing and Missing Aliased File(s) from appearing. Patch by Martyn Shaw. --- src/DirManager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/DirManager.cpp b/src/DirManager.cpp index d0ada1fb5..3d225fa95 100644 --- a/src/DirManager.cpp +++ b/src/DirManager.cpp @@ -1332,6 +1332,7 @@ void DirManager::Deref() // recent savefile. int DirManager::ProjectFSCK(const bool bForceError, const bool bAutoRecoverMode) { + wxGetApp().SetMissingAliasedFileWarningShouldShow(false); wxArrayString filePathArray; // *all* files in the project directory/subdirectories wxString dirPath = (projFull != wxT("") ? projFull : mytemp); RecursivelyEnumerateWithProgress( @@ -1608,6 +1609,7 @@ _("Project check found %d orphan blockfile(s). These files are \ wxOK | wxICON_EXCLAMATION); } + wxGetApp().SetMissingAliasedFileWarningShouldShow(true); return nResult; }