Title: [143320] trunk/Source/WebCore
Revision
143320
Author
[email protected]
Date
2013-02-19 05:15:48 -0800 (Tue, 19 Feb 2013)

Log Message

Fix build broekn by r142988.
https://bugs.webkit.org/show_bug.cgi?id=109530

Unreviewed. Build fix.

Properly add shortMonthFormat() to the LocaleNone class.

Patch by Alberto Garcia <[email protected]> on 2013-02-19

* platform/text/LocaleNone.cpp:
(LocaleNone):
(WebCore::LocaleNone::shortMonthFormat):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143319 => 143320)


--- trunk/Source/WebCore/ChangeLog	2013-02-19 13:02:50 UTC (rev 143319)
+++ trunk/Source/WebCore/ChangeLog	2013-02-19 13:15:48 UTC (rev 143320)
@@ -1,3 +1,16 @@
+2013-02-19  Alberto Garcia  <[email protected]>
+
+        Fix build broekn by r142988.
+        https://bugs.webkit.org/show_bug.cgi?id=109530
+
+        Unreviewed. Build fix.
+
+        Properly add shortMonthFormat() to the LocaleNone class.
+
+        * platform/text/LocaleNone.cpp:
+        (LocaleNone):
+        (WebCore::LocaleNone::shortMonthFormat):
+
 2013-02-19  Anton Vayvod  <[email protected]>
 
         [Text Autosizing] Combine narrow descendants of a cluster into groups that should be autosized with the same multiplier.

Modified: trunk/Source/WebCore/platform/text/LocaleNone.cpp (143319 => 143320)


--- trunk/Source/WebCore/platform/text/LocaleNone.cpp	2013-02-19 13:02:50 UTC (rev 143319)
+++ trunk/Source/WebCore/platform/text/LocaleNone.cpp	2013-02-19 13:15:48 UTC (rev 143320)
@@ -42,6 +42,7 @@
 #if ENABLE(DATE_AND_TIME_INPUT_TYPES)
     virtual String dateFormat() OVERRIDE;
     virtual String monthFormat() OVERRIDE;
+    virtual String shortMonthFormat() OVERRIDE;
     virtual String timeFormat() OVERRIDE;
     virtual String shortTimeFormat() OVERRIDE;
     virtual String dateTimeFormatWithSeconds() OVERRIDE;
@@ -99,7 +100,7 @@
     return ASCIILiteral("yyyy-MM");
 }
 
-String shortMonthFormat()
+String LocaleNone::shortMonthFormat()
 {
     return ASCIILiteral("yyyy-MM");
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to