Changeset 66965 in webkit


Ignore:
Timestamp:
Sep 8, 2010 3:48:38 AM (14 years ago)
Author:
Csaba Osztrogonác
Message:

2010-09-08 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by Andreas Kling.

Fix warning in rendering/RenderBlock.cpp.
https://bugs.webkit.org/show_bug.cgi?id=45373

  • rendering/RenderBlock.cpp:
(WebCore::RenderBlock::hitTestColumns): Suggested parentheses added around && within
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r66964 r66965  
     12010-09-08  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Fix warning in rendering/RenderBlock.cpp.
     6        https://bugs.webkit.org/show_bug.cgi?id=45373
     7
     8        * rendering/RenderBlock.cpp:
     9        (WebCore::RenderBlock::hitTestColumns): Suggested parentheses added around && within ||
     10
    1112010-09-08  Mario Sanchez Prada  <msanchez@igalia.com>
    212
  • trunk/WebCore/rendering/RenderBlock.cpp

    r66903 r66965  
    38713871                hitTestContents(request, result, x, y, finalX, finalY, hitTestAction);
    38723872            else
    3873                 return hitTestContents(request, result, x, y, finalX, finalY, hitTestAction) || hitTestAction == HitTestFloat && hitTestFloats(request, result, x, y, finalX, finalY);
     3873                return hitTestContents(request, result, x, y, finalX, finalY, hitTestAction) || (hitTestAction == HitTestFloat && hitTestFloats(request, result, x, y, finalX, finalY));
    38743874        }
    38753875    }
Note: See TracChangeset for help on using the changeset viewer.