Removing some DEBUG_hyatt code.

git-svn-id: svn://10.0.0.236/trunk@112967 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com
2002-01-26 23:42:24 +00:00
parent b4d0800861
commit 716a0600e6

View File

@@ -424,15 +424,15 @@ nsFocusController::SetSuppressFocus(PRBool aSuppressFocus, const char* aReason)
{
if(aSuppressFocus) {
++mSuppressFocus;
#ifdef DEBUG_hyatt
printf("[%p] SuppressFocus incremented to %d. The reason is %s.\n", this, mSuppressFocus, aReason);
#endif
//#ifdef DEBUG_hyatt
//printf("[%p] SuppressFocus incremented to %d. The reason is %s.\n", this, mSuppressFocus, aReason);
//#endif
}
else if(mSuppressFocus > 0) {
--mSuppressFocus;
#ifdef DEBUG_hyatt
printf("[%p] SuppressFocus decremented to %d. The reason is %s.\n", this, mSuppressFocus, aReason);
#endif
//#ifdef DEBUG_hyatt
//printf("[%p] SuppressFocus decremented to %d. The reason is %s.\n", this, mSuppressFocus, aReason);
//#endif
}
else
NS_ASSERTION(PR_FALSE, "Attempt to decrement focus controller's suppression when no suppression active!\n");