Title: [200230] trunk/Source/WebCore
Revision
200230
Author
[email protected]
Date
2016-04-28 23:04:06 -0700 (Thu, 28 Apr 2016)

Log Message

Remove extraneous space characters from parameter list for RenderListBox::paintItem()
that were added in r200190 (https://bugs.webkit.org/show_bug.cgi?id=157117).

* rendering/RenderListBox.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200229 => 200230)


--- trunk/Source/WebCore/ChangeLog	2016-04-29 05:23:46 UTC (rev 200229)
+++ trunk/Source/WebCore/ChangeLog	2016-04-29 06:04:06 UTC (rev 200230)
@@ -1,3 +1,10 @@
+2016-04-28  Daniel Bates  <[email protected]>
+
+        Remove extraneous space characters from parameter list for RenderListBox::paintItem()
+        that were added in r200190 (https://bugs.webkit.org/show_bug.cgi?id=157117).
+
+        * rendering/RenderListBox.h:
+
 2016-04-28  Joanmarie Diggs  <[email protected]>
 
         AX: [ATK] Expose subscript and superscript format style groups using ATK_ROLE_SUBSCRIPT and ATK_ROLE_SUPERSCRIPT

Modified: trunk/Source/WebCore/rendering/RenderListBox.h (200229 => 200230)


--- trunk/Source/WebCore/rendering/RenderListBox.h	2016-04-29 05:23:46 UTC (rev 200229)
+++ trunk/Source/WebCore/rendering/RenderListBox.h	2016-04-29 06:04:06 UTC (rev 200230)
@@ -143,7 +143,7 @@
     void scrollTo(int newOffset);
 
     using PaintFunction = std::function<void(PaintInfo&, const LayoutPoint&, int listItemIndex)>;
-    void paintItem(PaintInfo& , const LayoutPoint& , PaintFunction);
+    void paintItem(PaintInfo&, const LayoutPoint&, PaintFunction);
 
     void setHasVerticalScrollbar(bool hasScrollbar);
     PassRefPtr<Scrollbar> createScrollbar();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to