Changeset 103409 in webkit


Ignore:
Timestamp:
Dec 21, 2011 8:24:52 AM (12 years ago)
Author:
jberlin@webkit.org
Message:

Windows build fix.

Replace all instances of "WebPropupMenuProxy" with "WebPopupMenuProxy".

  • UIProcess/win/WebPopupMenuProxyWin.cpp:

(WebKit::WebPopupMenuProxyWin::showPopupMenu):
(WebKit::WebPopupMenuProxyWin::setFocusedIndex):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r103362 r103409  
     12011-12-21  Jessie Berlin  <jberlin@apple.com>
     2
     3        Windows build fix.
     4
     5        Replace all instances of "WebPropupMenuProxy" with "WebPopupMenuProxy".
     6
     7        * UIProcess/win/WebPopupMenuProxyWin.cpp:
     8        (WebKit::WebPopupMenuProxyWin::showPopupMenu):
     9        (WebKit::WebPopupMenuProxyWin::setFocusedIndex):
     10
    1112011-12-20  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp

    r103355 r103409  
    326326    ::ShowWindow(m_popup, SW_HIDE);
    327327
    328     if (!WebPropupMenuProxy::m_client)
     328    if (!WebPopupMenuProxy::m_client)
    329329        return;
    330330
    331     WebPropupMenuProxy::m_client->valueChangedForPopupMenu(this, m_newSelectedIndex);
     331    WebPopupMenuProxy::m_client->valueChangedForPopupMenu(this, m_newSelectedIndex);
    332332
    333333    // <https://bugs.webkit.org/show_bug.cgi?id=57904> In order to properly call the onClick()
     
    339339    // same location where the mouse down event occurred. This allows the hit test to select
    340340    // the correct element, and thereby call the onClick() JS handler.
    341     if (!WebPropupMenuProxy::m_client->currentlyProcessedMouseDownEvent())
     341    if (!WebPopupMenuProxy::m_client->currentlyProcessedMouseDownEvent())
    342342        return;
    343343       
    344     const MSG* initiatingWinEvent = WebPropupMenuProxy::m_client->currentlyProcessedMouseDownEvent()->nativeEvent();
     344    const MSG* initiatingWinEvent = WebPopupMenuProxy::m_client->currentlyProcessedMouseDownEvent()->nativeEvent();
    345345    MSG fakeEvent = *initiatingWinEvent;
    346346    fakeEvent.message = WM_LBUTTONUP;
     
    871871
    872872    if (!hotTracking) {
    873         if (WebPropupMenuProxy::m_client)
    874             WebPropupMenuProxy::m_client->setTextFromItemForPopupMenu(this, i);
     873        if (WebPopupMenuProxy::m_client)
     874            WebPopupMenuProxy::m_client->setTextFromItemForPopupMenu(this, i);
    875875    }
    876876
Note: See TracChangeset for help on using the changeset viewer.