Title: [161716] trunk/Source/WebCore
Revision
161716
Author
[email protected]
Date
2014-01-10 19:29:43 -0800 (Fri, 10 Jan 2014)

Log Message

Fix MonthInputType.o for iOS. Unreviewed build fix.

When ENABLE_INPUT_MULTIPLE_FIELDS_UI was removed in r150876,
the wrong class name lingered. Fix it to be the base class.

* html/TimeInputType.cpp:
(WebCore::TimeInputType::TimeInputType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161715 => 161716)


--- trunk/Source/WebCore/ChangeLog	2014-01-11 02:26:39 UTC (rev 161715)
+++ trunk/Source/WebCore/ChangeLog	2014-01-11 03:29:43 UTC (rev 161716)
@@ -1,3 +1,13 @@
+2014-01-10  Joseph Pecoraro  <[email protected]>
+
+        Fix MonthInputType.o for iOS. Unreviewed build fix.
+
+        When ENABLE_INPUT_MULTIPLE_FIELDS_UI was removed in r150876,
+        the wrong class name lingered. Fix it to be the base class.
+
+        * html/TimeInputType.cpp:
+        (WebCore::TimeInputType::TimeInputType):
+
 2014-01-10  Andy Estes  <[email protected]>
 
         [iOS] Build fix: make sure WTF_PLATFORM_IOS is defined when preprocessing

Modified: trunk/Source/WebCore/html/TimeInputType.cpp (161715 => 161716)


--- trunk/Source/WebCore/html/TimeInputType.cpp	2014-01-11 02:26:39 UTC (rev 161715)
+++ trunk/Source/WebCore/html/TimeInputType.cpp	2014-01-11 03:29:43 UTC (rev 161716)
@@ -48,7 +48,7 @@
 static const int timeStepScaleFactor = 1000;
 
 TimeInputType::TimeInputType(HTMLInputElement& element)
-    : BaseTimeInputType(element)
+    : BaseChooserOnlyDateAndTimeInputType(element)
 {
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to