Changeset 56424 in webkit


Ignore:
Timestamp:
Mar 23, 2010 3:57:20 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-23 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

QGraphicsWebView crash when calling setView on the QWebPage...
https://bugs.webkit.org/show_bug.cgi?id=36436

Checking for pageClient existance before showing popups.

  • WebCoreSupport/QtFallbackWebPopup.cpp: (WebCore::QtFallbackWebPopup::show):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r56423 r56424  
     12010-03-23  Luiz Agostini  <luiz.agostini@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        QGraphicsWebView crash when calling setView on the QWebPage...
     6        https://bugs.webkit.org/show_bug.cgi?id=36436
     7
     8        Checking for pageClient existance before showing popups.
     9
     10        * WebCoreSupport/QtFallbackWebPopup.cpp:
     11        (WebCore::QtFallbackWebPopup::show):
     12
    1132010-03-23  Anders Bakken <anders.bakken@nokia.com>, Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
    214
  • trunk/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp

    r55981 r56424  
    100100void QtFallbackWebPopup::show()
    101101{
     102    if (!pageClient())
     103        return;
     104
    102105#if ENABLE(SYMBIAN_DIALOG_PROVIDERS)
    103106    TRAP_IGNORE(showS60BrowserDialog());
Note: See TracChangeset for help on using the changeset viewer.