1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Merge branch 'no-non-ascii'

This commit is contained in:
James Crook 2018-04-15 15:11:07 +01:00
commit 69eba8f151
3 changed files with 1 additions and 11 deletions
lib-src/portaudio-v19/src/common
src

@ -71,7 +71,7 @@ void PaUtil_SetDebugPrintFunction(PaUtilLogCallback cb)
}
/*
If your platform doesnt have vsnprintf, you are stuck with a
If your platform doesn't have vsnprintf, you are stuck with a
VERY dangerous alternative, vsprintf (with no n)
*/
#if _MSC_VER

@ -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 );

@ -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;
}