Title: [137495] trunk/Source/WebKit2
Revision
137495
Author
abe...@webkit.org
Date
2012-12-12 11:44:24 -0800 (Wed, 12 Dec 2012)

Log Message

[Qt][WK2] Fix the build on Mac

Unreviewed build fix.

Add missing virtual destructor with empty
definition to fix missing vtable error
in test util's LoadStartedCatcher.

* UIProcess/API/qt/tests/util.h:
(LoadStartedCatcher::~LoadStartedCatcher):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137494 => 137495)


--- trunk/Source/WebKit2/ChangeLog	2012-12-12 19:43:45 UTC (rev 137494)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-12 19:44:24 UTC (rev 137495)
@@ -1,3 +1,16 @@
+2012-12-12  Andras Becsi  <andras.be...@digia.com>
+
+        [Qt][WK2] Fix the build on Mac
+
+        Unreviewed build fix.
+
+        Add missing virtual destructor with empty
+        definition to fix missing vtable error
+        in test util's LoadStartedCatcher.
+
+        * UIProcess/API/qt/tests/util.h:
+        (LoadStartedCatcher::~LoadStartedCatcher):
+
 2012-12-12  Alexey Proskuryakov  <a...@apple.com>
 
         Make LOG() work in WebProcess and NetworkProcess

Modified: trunk/Source/WebKit2/UIProcess/API/qt/tests/util.h (137494 => 137495)


--- trunk/Source/WebKit2/UIProcess/API/qt/tests/util.h	2012-12-12 19:43:45 UTC (rev 137494)
+++ trunk/Source/WebKit2/UIProcess/API/qt/tests/util.h	2012-12-12 19:44:24 UTC (rev 137495)
@@ -42,6 +42,7 @@
     Q_OBJECT
 public:
     LoadStartedCatcher(QQuickWebView* webView);
+    virtual ~LoadStartedCatcher() { }
 public Q_SLOTS:
     void onLoadingChanged(QWebLoadRequest* loadRequest);
 Q_SIGNALS:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to