removing debugging statements or migrating them over to the build time debugging code

git-svn-id: svn://svn.code.sf.net/p/qjoypad/code/trunk@107 c05e91a0-76c8-4ec0-b377-ef19ce7cc080
This commit is contained in:
John Toman
2009-08-21 02:32:43 +00:00
committed by virtuoussin13
parent b4fb916596
commit 941eee3fdc
3 changed files with 9 additions and 10 deletions

View File

@ -118,9 +118,9 @@ void LayoutEdit::windowActivationChange( bool oldActive ) {
QHashIterator<int, JoyPad*> it( available );
while (it.hasNext())
{
printf("iterating and releasing\n");
DEBUG("iterating and releasing\n");
it.next();
it.value()->release();
}
printf("done releasing!\n");
DEBUG("done releasing!\n");
}