Title: [136983] trunk/Source/WebKit2
Revision
136983
Author
[email protected]
Date
2012-12-07 14:13:18 -0800 (Fri, 07 Dec 2012)

Log Message

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

Patch by Helder Correia <[email protected]> on 2012-12-07
Reviewed by Noam Rosenthal.

Just fixing a typo.

* WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp:
(WebCore::CoordinatedGraphicsLayer::setMaskLayer):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (136982 => 136983)


--- trunk/Source/WebKit2/ChangeLog	2012-12-07 22:08:43 UTC (rev 136982)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-07 22:13:18 UTC (rev 136983)
@@ -1,3 +1,15 @@
+2012-12-07  Helder Correia  <[email protected]>
+
+        [CoordGfx] Variable name starts with upper case character
+        https://bugs.webkit.org/show_bug.cgi?id=104327
+
+        Reviewed by Noam Rosenthal.
+
+        Just fixing a typo.
+
+        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp:
+        (WebCore::CoordinatedGraphicsLayer::setMaskLayer):
+
 2012-12-07  Kenneth Rohde Christiansen  <[email protected]>
 
         [WK2][EFL][Qt] Pixel alignment is wrong in some cases involving a non-integral content scale

Modified: trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp (136982 => 136983)


--- trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp	2012-12-07 22:08:43 UTC (rev 136982)
+++ trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.cpp	2012-12-07 22:13:18 UTC (rev 136983)
@@ -404,8 +404,8 @@
 
     layer->setSize(size());
     layer->setContentsVisible(contentsAreVisible());
-    CoordinatedGraphicsLayer* CoordinatedGraphicsLayer = toCoordinatedGraphicsLayer(layer);
-    CoordinatedGraphicsLayer->didChangeLayerState();
+    CoordinatedGraphicsLayer* coordinatedLayer = toCoordinatedGraphicsLayer(layer);
+    coordinatedLayer->didChangeLayerState();
     didChangeLayerState();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to