1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Fix non-ASCII characters in wxLogDebug

The LogDebugs aren't needed now, as we can get the info via Scripting.
This commit is contained in:
James Crook 2018-04-15 15:09:15 +01:00
parent 42fb02bf9c
commit 121fdc5703
2 changed files with 0 additions and 10 deletions

View File

@ -357,7 +357,6 @@ void ExploreMenu(
if (item->IsCheck() && item->IsChecked())
flags +=2;
wxLogDebug("T.Add( %2i, %2i, 0, \"%s¬%s\" );", depth, flags, Label,Accel );
if (item->IsSubMenu()) {
pMenu = item->GetSubMenu();
ExploreMenu( context, pMenu, item->GetId(), depth+1 );

View File

@ -354,15 +354,6 @@ KeyView::SetView(ViewByType type)
SelectNode(index);
}
#if 0
// JKC: Optional code to list commants and shortcuts to debug console.
int nLines = mLines.GetCount();
int flags = 8;
for(int i=0;i<nLines;i++){
wxLogDebug("T.Add( %2i, %2i, 0, \"%s¬%s\" );", mLines[i]->depth-1, flags, mLines[i]->label,mLines[i]->key );
}
#endif
return;
}