Fixed build bustage

This commit is contained in:
pierre%netscape.com 1999-02-03 06:08:39 +00:00
parent c2952e0392
commit 8fe63ff4d7

View File

@ -283,7 +283,11 @@ void nsMacMessagePump::DoMouseDown(EventRecord &anEvent)
{
::SetPort(whichWindow);
Boolean drawOnResize = (DEBUG && DRAW_ON_RESIZE && ((anEvent.modifiers & cmdKey) != 0));
#if DEBUG
Boolean drawOnResize = (DRAW_ON_RESIZE && ((anEvent.modifiers & cmdKey) != 0));
#else
Boolean drawOnResize = false;
#endif
if (drawOnResize)
{
Point oldPt = anEvent.where;