Title: [164628] trunk/Source/WebKit2
Revision
164628
Author
[email protected]
Date
2014-02-24 21:45:35 -0800 (Mon, 24 Feb 2014)

Log Message

32-bit build fix.

* UIProcess/API/Cocoa/_WKElementAction.mm:
(+[_WKElementAction elementActionWithType:customTitle:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164627 => 164628)


--- trunk/Source/WebKit2/ChangeLog	2014-02-25 04:44:09 UTC (rev 164627)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-25 05:45:35 UTC (rev 164628)
@@ -1,5 +1,12 @@
 2014-02-24  Dan Bernstein  <[email protected]>
 
+        32-bit build fix.
+
+        * UIProcess/API/Cocoa/_WKElementAction.mm:
+        (+[_WKElementAction elementActionWithType:customTitle:]):
+
+2014-02-24  Dan Bernstein  <[email protected]>
+
         [Cocoa] Start adding API for customizing actions on activated elements
         https://bugs.webkit.org/show_bug.cgi?id=129284
 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.mm (164627 => 164628)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.mm	2014-02-25 04:44:09 UTC (rev 164627)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKElementAction.mm	2014-02-25 05:45:35 UTC (rev 164628)
@@ -121,7 +121,7 @@
         };
         break;
     default:
-        [NSException raise:NSInvalidArgumentException format:@"There is no standard web element action of type %ld.", type];
+        [NSException raise:NSInvalidArgumentException format:@"There is no standard web element action of type %ld.", (long)type];
         return nil;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to