Remove unneeded call to EnumChildWindows in nsWindow::BroadcastMsgToChildren, which was causing the system color change message to be dispatched too many times. b=173152 r=dcone sr=kin

This commit is contained in:
kmcclusk%netscape.com 2002-10-08 01:57:38 +00:00
Родитель bf98c65984
Коммит f97400373e
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -698,8 +698,6 @@ BOOL CALLBACK nsWindow::BroadcastMsgToChildren(HWND aWnd, LPARAM aMsg)
::CallWindowProc(winProc, aWnd, aMsg, 0, 0);
#endif
}
// Send message to children of this window
::EnumChildWindows(aWnd, nsWindow::BroadcastMsgToChildren, aMsg);
return TRUE;
}