Changeset 21323 in webkit


Ignore:
Timestamp:
May 8, 2007 10:15:48 PM (17 years ago)
Author:
bdash
Message:

2007-05-09 Mark Rowe <mrowe@apple.com>

Build fix to keep the buildbot happy.

  • Plugins/WebBaseNetscapePluginView.mm: (-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]):
Location:
trunk/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r21322 r21323  
     12007-05-09  Mark Rowe  <mrowe@apple.com>
     2
     3        Build fix to keep the buildbot happy.
     4
     5        * Plugins/WebBaseNetscapePluginView.mm:
     6        (-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]):
     7
    182007-05-08  Bruce Q Hammond  <bruceq@apple.com>
    29
  • trunk/WebKit/Plugins/WebBaseNetscapePluginView.mm

    r21322 r21323  
    457457                        origin.y = offscreenBounds.bottom + origin.y * (axisFlip.y - origin.y);
    458458                       
    459                         nPort.qdPort.portx = (int32)-boundsInWindow.origin.x + origin.x;
    460                         nPort.qdPort.porty = (int32)-boundsInWindow.origin.y + origin.y;                       
     459                        nPort.qdPort.portx = static_cast<int32>(-boundsInWindow.origin.x + origin.x);
     460                        nPort.qdPort.porty = static_cast<int32>(-boundsInWindow.origin.y + origin.y);
    461461                        window.x = 0;
    462462                        window.y = 0;
Note: See TracChangeset for help on using the changeset viewer.