Title: [207533] trunk/Source/WebCore
Revision
207533
Author
clo...@igalia.com
Date
2016-10-19 03:42:17 -0700 (Wed, 19 Oct 2016)

Log Message

[GTK] REGRESSION(r207396) Build broken with Clang.
https://bugs.webkit.org/show_bug.cgi?id=163599

Suggested and reviewed by Darin Adler.

* css/CSSPrimitiveValue.cpp:
(WebCore::CSSPrimitiveValue::getStringValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207532 => 207533)


--- trunk/Source/WebCore/ChangeLog	2016-10-19 09:20:14 UTC (rev 207532)
+++ trunk/Source/WebCore/ChangeLog	2016-10-19 10:42:17 UTC (rev 207533)
@@ -1,3 +1,13 @@
+2016-10-19  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
+        [GTK] REGRESSION(r207396) Build broken with Clang.
+        https://bugs.webkit.org/show_bug.cgi?id=163599
+
+        Suggested and reviewed by Darin Adler.
+
+        * css/CSSPrimitiveValue.cpp:
+        (WebCore::CSSPrimitiveValue::getStringValue):
+
 2016-10-19  Darin Adler  <da...@apple.com>
 
         Try to fix build.

Modified: trunk/Source/WebCore/css/CSSPrimitiveValue.cpp (207532 => 207533)


--- trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2016-10-19 09:20:14 UTC (rev 207532)
+++ trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2016-10-19 10:42:17 UTC (rev 207533)
@@ -936,9 +936,9 @@
     case CSS_FONT_FAMILY:
         return String { m_value.fontFamily->familyName };
     case CSS_VALUE_ID:
-        return String { valueName(m_value.valueID) };
+        return String { valueName(m_value.valueID).string() };
     case CSS_PROPERTY_ID:
-        return String { propertyName(m_value.propertyID) };
+        return String { propertyName(m_value.propertyID).string() };
     default:
         return Exception { INVALID_ACCESS_ERR };
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to