1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-06 15:19:29 +02:00

Minor changes to comments.

This commit is contained in:
v.audacity 2011-02-02 00:43:00 +00:00
parent 39adb7b552
commit 63f391ba46

View File

@ -1088,10 +1088,10 @@ bool DirManager::MoveToNewProjectDirectory(BlockFile *f)
{ {
if(!wxRenameFile(f->GetFileName().GetFullPath(), if(!wxRenameFile(f->GetFileName().GetFullPath(),
newFileName.GetFullPath())) newFileName.GetFullPath()))
/*wxCopyFile(f->GetFileName().GetFullPath(), //ANSWER-ME: In or out? Cruft? /*wxCopyFile(f->GetFileName().GetFullPath(), //vvvvv ANSWER-ME: In or out? Cruft?
newFileName.GetFullPath()))*/ newFileName.GetFullPath()))*/
return false; return false;
//wxRemoveFile(f->GetFileName().GetFullPath()); //ANSWER-ME: In or out? Cruft? //wxRemoveFile(f->GetFileName().GetFullPath()); //vvvvv ANSWER-ME: In or out? Cruft?
} }
f->SetFileName(newFileName); f->SetFileName(newFileName);
@ -1174,7 +1174,7 @@ bool DirManager::CopyToNewProjectDirectory(BlockFile *f)
} }
return true; return true;
//ANSWER-ME: In or out? Cruft? //vvvvv ANSWER-ME: In or out? Cruft?
// //
// if ( !(newFileName == f->mFileName) ) { // if ( !(newFileName == f->mFileName) ) {
// bool ok = wxCopyFile(f->mFileName.GetFullPath(), // bool ok = wxCopyFile(f->mFileName.GetFullPath(),