Title: [120251] trunk/Source/WebCore
Revision
120251
Author
[email protected]
Date
2012-06-13 14:59:01 -0700 (Wed, 13 Jun 2012)

Log Message

Remove return statement in void method
https://bugs.webkit.org/show_bug.cgi?id=88998

Patch by Konrad Piascik <[email protected]> on 2012-06-13
Reviewed by Andreas Kling

* html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::collectStyleForAttribute):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (120250 => 120251)


--- trunk/Source/WebCore/ChangeLog	2012-06-13 21:44:27 UTC (rev 120250)
+++ trunk/Source/WebCore/ChangeLog	2012-06-13 21:59:01 UTC (rev 120251)
@@ -1,3 +1,13 @@
+2012-06-13  Konrad Piascik  <[email protected]>
+
+        Remove return statement in void method
+        https://bugs.webkit.org/show_bug.cgi?id=88998
+
+        Reviewed by Andreas Kling
+
+        * html/HTMLInputElement.cpp:
+        (WebCore::HTMLInputElement::collectStyleForAttribute):
+
 2012-06-13  Benjamin Poulain  <[email protected]>
 
         Implement the simple constructors WTFURL's KURL

Modified: trunk/Source/WebCore/html/HTMLInputElement.cpp (120250 => 120251)


--- trunk/Source/WebCore/html/HTMLInputElement.cpp	2012-06-13 21:44:27 UTC (rev 120250)
+++ trunk/Source/WebCore/html/HTMLInputElement.cpp	2012-06-13 21:59:01 UTC (rev 120251)
@@ -554,7 +554,7 @@
     } else if (attribute.name() == borderAttr && isImageButton())
         applyBorderAttributeToStyle(attribute, style);
     else
-        return HTMLTextFormControlElement::collectStyleForAttribute(attribute, style);
+        HTMLTextFormControlElement::collectStyleForAttribute(attribute, style);
 }
 
 void HTMLInputElement::parseAttribute(const Attribute& attribute)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to