Changeset 110116 in webkit


Ignore:
Timestamp:
Mar 7, 2012 3:31:02 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

<http://webkit.org/b/80510> Web Inspector crash (iCab)

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2012-03-07
Reviewed by Timothy Hatcher.

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorClient::didResizeMainFrame):

Location:
trunk/Source/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r110089 r110116  
     12012-03-07  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        <http://webkit.org/b/80510> Web Inspector crash (iCab)
     4
     5        Reviewed by Timothy Hatcher.
     6
     7        * WebCoreSupport/WebInspectorClient.mm:
     8        (WebInspectorClient::didResizeMainFrame):
     9
    1102012-03-06  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Source/WebKit/mac/WebCoreSupport/WebInspectorClient.mm

    r109939 r110116  
    114114void WebInspectorClient::didResizeMainFrame(Frame*)
    115115{
    116     m_frontendClient->setDockingUnavailable(!m_frontendClient->canAttachWindow());
     116    if (m_frontendClient)
     117        m_frontendClient->setDockingUnavailable(!m_frontendClient->canAttachWindow());
    117118}
    118119
Note: See TracChangeset for help on using the changeset viewer.