Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[Qt] Remove the QWebPage:webInspectorTriggered signal.
User customization of the communication between QWebPage and QWebInspector will be properly designed in the next version. https://bugs.webkit.org/show_bug.cgi?id=30773 Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2009-11-09 Reviewed by Simon Hausmann. * Api/qwebinspector.cpp: * Api/qwebpage.cpp: (QWebPagePrivate::getOrCreateInspector): (QWebPage::triggerAction): * Api/qwebpage.h: * QtLauncher/main.cpp: (MainWindow::MainWindow): Canonical link: https://commits.webkit.org/42086@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@50656 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
19 additions
and 30 deletions.
- +1 −5 WebKit/qt/Api/qwebinspector.cpp
- +1 −23 WebKit/qt/Api/qwebpage.cpp
- +0 −1 WebKit/qt/Api/qwebpage.h
- +17 −0 WebKit/qt/ChangeLog
- +0 −1 WebKit/qt/QtLauncher/main.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -109,7 +109,6 @@ class MainWindow : public QMainWindow | ||
inspector->setPage(page); | ||
inspector->hide(); | ||
connect(this, SIGNAL(destroyed()), inspector, SLOT(deleteLater())); | ||
|
||
setupUI(); | ||
|
||