summarylogtreecommitdiffstats
path: root/0009-Fixed-crash-probably-miscompilation-with-MinGW-w64-5.patch
blob: c7f7481b54791ede45ea43113fe7d50220720eee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
From dc3c88d8b9b4afeb6efb60069560e90911ab5d83 Mon Sep 17 00:00:00 2001
From: Konstantin Tokarev <annulen@yandex.ru>
Date: Fri, 4 Nov 2016 00:44:49 +0300
Subject: [PATCH 9/9] Fixed crash (probably miscompilation) with MinGW-w64
 5.3.0

Change-Id: Iac1c5fe1879abfaa299ec909e5928912c2354126
---
 Source/WebKit/qt/WidgetApi/qwebframe.cpp | 10 ----------
 Source/WebKit/qt/WidgetApi/qwebframe_p.h |  4 ++--
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/Source/WebKit/qt/WidgetApi/qwebframe.cpp b/Source/WebKit/qt/WidgetApi/qwebframe.cpp
index dd08725eb..1cec124ee 100644
--- a/Source/WebKit/qt/WidgetApi/qwebframe.cpp
+++ b/Source/WebKit/qt/WidgetApi/qwebframe.cpp
@@ -119,16 +119,6 @@ QWebFrameAdapter* QWebFramePrivate::createChildFrame(QWebFrameData* frameData)
     return newFrame->d;
 }
 
-QWebFrame *QWebFramePrivate::apiHandle()
-{
-    return q;
-}
-
-QObject *QWebFramePrivate::handle()
-{
-    return q;
-}
-
 void QWebFramePrivate::contentsSizeDidChange(const QSize &size)
 {
     emit q->contentsSizeChanged(size);
diff --git a/Source/WebKit/qt/WidgetApi/qwebframe_p.h b/Source/WebKit/qt/WidgetApi/qwebframe_p.h
index 2a1c20278..25fbdc319 100644
--- a/Source/WebKit/qt/WidgetApi/qwebframe_p.h
+++ b/Source/WebKit/qt/WidgetApi/qwebframe_p.h
@@ -49,8 +49,8 @@ public:
     static QWebFrame* kit(const QWebFrameAdapter*);
 
     // Adapter implementation
-    virtual QWebFrame* apiHandle() OVERRIDE;
-    virtual QObject* handle() OVERRIDE;
+    virtual QWebFrame* apiHandle() OVERRIDE { return q; }
+    virtual QObject* handle() OVERRIDE { return q; }
     virtual void contentsSizeDidChange(const QSize &) OVERRIDE;
     virtual int scrollBarPolicy(Qt::Orientation) const OVERRIDE;
     virtual void emitUrlChanged() OVERRIDE;
-- 
2.13.0