mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 20:49:27 +00:00
Fixed build bustage
This commit is contained in:
parent
c2952e0392
commit
8fe63ff4d7
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user