diff options
Diffstat (limited to 'Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp')
| -rw-r--r-- | Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp b/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp index 0b8a7d1ab..13a33f8bc 100644 --- a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp +++ b/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp @@ -117,12 +117,12 @@ void PlatformWebView::setWindowFrame(WKRect wkRect) bool PlatformWebView::sendEvent(QEvent* event) { - return QCoreApplication::sendEvent(m_view->page(), event); + return QCoreApplication::sendEvent(m_view, event); } void PlatformWebView::postEvent(QEvent* event) { - QCoreApplication::postEvent(m_view->page(), event); + QCoreApplication::postEvent(m_view, event); } void PlatformWebView::addChromeInputField() |
