Title: [183415] trunk/Source/WebKit/win
Revision
183415
Author
[email protected]
Date
2015-04-27 13:28:55 -0700 (Mon, 27 Apr 2015)

Log Message

Unreviewed build fix after r183405

* WebActionPropertyBag.cpp:
(WebActionPropertyBag::Read): Cast the enum class to a LONG.

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (183414 => 183415)


--- trunk/Source/WebKit/win/ChangeLog	2015-04-27 20:23:08 UTC (rev 183414)
+++ trunk/Source/WebKit/win/ChangeLog	2015-04-27 20:28:55 UTC (rev 183415)
@@ -1,3 +1,10 @@
+2015-04-27  Brady Eidson  <[email protected]>
+
+        Unreviewed build fix after r183405
+
+        * WebActionPropertyBag.cpp:
+        (WebActionPropertyBag::Read): Cast the enum class to a LONG.
+
 2015-04-23  Andy Estes  <[email protected]>
 
         Try to fix the Windows build after r183234.

Modified: trunk/Source/WebKit/win/WebActionPropertyBag.cpp (183414 => 183415)


--- trunk/Source/WebKit/win/WebActionPropertyBag.cpp	2015-04-27 20:23:08 UTC (rev 183414)
+++ trunk/Source/WebKit/win/WebActionPropertyBag.cpp	2015-04-27 20:28:55 UTC (rev 183415)
@@ -114,7 +114,7 @@
 
     if (isEqual(pszPropName, WebActionNavigationTypeKey)) {
         V_VT(pVar) = VT_I4;
-        V_I4(pVar) = m_action.type();
+        V_I4(pVar) = static_cast<LONG>(m_action.type());
         return S_OK;
     }
     if (isEqual(pszPropName, WebActionElementKey)) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to