Title: [161709] trunk/Source/WebCore
Revision
161709
Author
joep...@webkit.org
Date
2014-01-10 17:50:32 -0800 (Fri, 10 Jan 2014)

Log Message

Fix MonthInputType.o for iOS. Unreviewed build fix.

Incorrect base class name. Must have been typo'd when upstreaming.

* html/MonthInputType.h:
(WebCore::MonthInputType::MonthInputType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161708 => 161709)


--- trunk/Source/WebCore/ChangeLog	2014-01-11 01:33:47 UTC (rev 161708)
+++ trunk/Source/WebCore/ChangeLog	2014-01-11 01:50:32 UTC (rev 161709)
@@ -1,5 +1,16 @@
 2014-01-10  Joseph Pecoraro  <pecor...@apple.com>
 
+        Fix MonthInputType.o for iOS. Unreviewed build fix.
+
+        When ENABLE_INPUT_MULTIPLE_FIELDS_UI was removed in r150876, the
+        BaseMonthInputType typedef was removed. However a use of it lingered.
+        Changing to match the base class name.
+
+        * html/MonthInputType.h:
+        (WebCore::MonthInputType::MonthInputType):
+
+2014-01-10  Joseph Pecoraro  <pecor...@apple.com>
+
         Fix RenderButton.o for iOS. Unreviewed build fix.
 
         Missing prototype in header for override of the layout method.

Modified: trunk/Source/WebCore/html/MonthInputType.h (161708 => 161709)


--- trunk/Source/WebCore/html/MonthInputType.h	2014-01-11 01:33:47 UTC (rev 161708)
+++ trunk/Source/WebCore/html/MonthInputType.h	2014-01-11 01:50:32 UTC (rev 161709)
@@ -38,7 +38,7 @@
 
 class MonthInputType : public BaseChooserOnlyDateAndTimeInputType {
 public:
-    explicit MonthInputType(HTMLInputElement& element) : BaseMonthInputType(element) { }
+    explicit MonthInputType(HTMLInputElement& element) : BaseChooserOnlyDateAndTimeInputType(element) { }
 
 private:
     virtual void attach() OVERRIDE;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to