Title: [92600] trunk/Source/WebCore
Revision
92600
Author
[email protected]
Date
2011-08-08 09:26:08 -0700 (Mon, 08 Aug 2011)

Log Message

Build fix.

* html/NumberInputType.cpp:
(WebCore::NumberInputType::sizeShouldIncludeDecoration): Fixed an obvious typo.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92599 => 92600)


--- trunk/Source/WebCore/ChangeLog	2011-08-08 16:13:07 UTC (rev 92599)
+++ trunk/Source/WebCore/ChangeLog	2011-08-08 16:26:08 UTC (rev 92600)
@@ -1,3 +1,10 @@
+2011-08-08  Dan Bernstein  <[email protected]>
+
+        Build fix.
+
+        * html/NumberInputType.cpp:
+        (WebCore::NumberInputType::sizeShouldIncludeDecoration): Fixed an obvious typo.
+
 2011-08-08  Andras Becsi  <[email protected]>
 
         [Qt] Clean up project file after r92492.

Modified: trunk/Source/WebCore/html/NumberInputType.cpp (92599 => 92600)


--- trunk/Source/WebCore/html/NumberInputType.cpp	2011-08-08 16:13:07 UTC (rev 92599)
+++ trunk/Source/WebCore/html/NumberInputType.cpp	2011-08-08 16:26:08 UTC (rev 92600)
@@ -154,7 +154,7 @@
 
     if (maxValueDouble < minValueDouble) {
         maxValueDouble = minValueDouble;
-        maxValueDecimalPlaces = maxValueDecimalPlaces;
+        maxValueDecimalPlaces = minValueDecimalPlaces;
     }
 
     unsigned stepValueDecimalPlaces;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to