Undo accidental commit. Letting stand the accidental commit of DirManager.cpp, as it was correct.

This commit is contained in:
v.audacity 2011-03-25 21:20:32 +00:00
parent 35087a5553
commit 09d1ed4d25
1 changed files with 9 additions and 9 deletions

View File

@ -279,15 +279,15 @@ wxArrayString BatchCommands::GetAllCommands()
}
delete effects;
//vvvvv /* This is for later in development: include the menu commands.
CommandManager * mManager = project->GetCommandManager();
wxArrayString mNames;
mNames.Clear();
mManager->GetAllCommandNames(mNames, false);
for(i=0; i<mNames.GetCount(); i++) {
commands.Add( mNames[i] );
}
//vvvvv */
/* This is for later in development: include the menu commands.
CommandManager * mManager = project->GetCommandManager();
wxArrayString mNames;
mNames.Clear();
mManager->GetAllCommandNames(mNames, false);
for(i=0; i<mNames.GetCount(); i++) {
commands.Add( mNames[i] );
}
*/
return commands;
}