Comment out a couple more printfs that saari missed yesterday. r=pinkerton

git-svn-id: svn://10.0.0.236/trunk@60964 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sfraser%netscape.com 2000-02-15 23:32:44 +00:00
parent 99e8aa4ef6
commit 3e875c5a3e

View File

@ -125,7 +125,7 @@ void nsMacEventDispatchHandler::SetFocus(nsWindow *aFocusedWidget)
{
mActiveWidget->ResetInputState();
mActiveWidget->RemoveDeleteObserver(this);
printf("nsMacEventDispatcher::SetFocus sends NS_LOSTFOCUS\n");
//printf("nsMacEventDispatcher::SetFocus sends NS_LOSTFOCUS\n");
DispatchGuiEvent(mActiveWidget, NS_LOSTFOCUS);
}
@ -135,7 +135,7 @@ void nsMacEventDispatchHandler::SetFocus(nsWindow *aFocusedWidget)
if (mActiveWidget)
{
mActiveWidget->AddDeleteObserver(this);
printf("nsMacEventDispatcher::SetFocus sends NS_GOTFOCUS\n");
//printf("nsMacEventDispatcher::SetFocus sends NS_GOTFOCUS\n");
DispatchGuiEvent(mActiveWidget, NS_GOTFOCUS);
}
}