Title: [99390] trunk/Source/WebCore
Revision
99390
Author
[email protected]
Date
2011-11-06 18:25:46 -0800 (Sun, 06 Nov 2011)

Log Message

Remove extra semicolon in ColorInputType
https://bugs.webkit.org/show_bug.cgi?id=71639

Reviewed by Kent Tamura.

* html/ColorInputType.cpp:
(WebCore::ColorInputType::setValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (99389 => 99390)


--- trunk/Source/WebCore/ChangeLog	2011-11-07 02:07:50 UTC (rev 99389)
+++ trunk/Source/WebCore/ChangeLog	2011-11-07 02:25:46 UTC (rev 99390)
@@ -1,3 +1,13 @@
+2011-11-06  Keishi Hattori  <[email protected]>
+
+        Remove extra semicolon in ColorInputType
+        https://bugs.webkit.org/show_bug.cgi?id=71639
+
+        Reviewed by Kent Tamura.
+
+        * html/ColorInputType.cpp:
+        (WebCore::ColorInputType::setValue):
+
 2011-11-06  Dominic Cooney  <[email protected]>
 
         Remove initBeforeLoadEvent method

Modified: trunk/Source/WebCore/html/ColorInputType.cpp (99389 => 99390)


--- trunk/Source/WebCore/html/ColorInputType.cpp	2011-11-07 02:07:50 UTC (rev 99389)
+++ trunk/Source/WebCore/html/ColorInputType.cpp	2011-11-07 02:25:46 UTC (rev 99390)
@@ -118,7 +118,7 @@
     updateColorSwatch();
 }
 
-void ColorInputType::setValue(const String& value, bool valueChanged, bool sendChangeEvent);
+void ColorInputType::setValue(const String& value, bool valueChanged, bool sendChangeEvent)
 {
     InputType::setValue(value, valueChanged, sendChangeEvent);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to