Changeset 136983 in webkit


Ignore:
Timestamp:
Dec 7, 2012 2:13:18 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[CoordGfx] Variable name starts with upper case character
https://bugs.webkit.org/show_bug.cgi?id=104327

Patch by Helder Correia <Helder Correia> on 2012-12-07
Reviewed by Noam Rosenthal.

Just fixing a typo.

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp:

(WebCore::CoordinatedGraphicsLayer::setMaskLayer):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r136976 r136983  
     12012-12-07  Helder Correia  <helder.correia@nokia.com>
     2
     3        [CoordGfx] Variable name starts with upper case character
     4        https://bugs.webkit.org/show_bug.cgi?id=104327
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Just fixing a typo.
     9
     10        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp:
     11        (WebCore::CoordinatedGraphicsLayer::setMaskLayer):
     12
    1132012-12-07  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    214
  • trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp

    r136976 r136983  
    405405    layer->setSize(size());
    406406    layer->setContentsVisible(contentsAreVisible());
    407     CoordinatedGraphicsLayer* CoordinatedGraphicsLayer = toCoordinatedGraphicsLayer(layer);
    408     CoordinatedGraphicsLayer->didChangeLayerState();
     407    CoordinatedGraphicsLayer* coordinatedLayer = toCoordinatedGraphicsLayer(layer);
     408    coordinatedLayer->didChangeLayerState();
    409409    didChangeLayerState();
    410410}
Note: See TracChangeset for help on using the changeset viewer.