summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/demobrowser/webview.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webenginewidgets/demobrowser/webview.h')
-rw-r--r--examples/webenginewidgets/demobrowser/webview.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/webenginewidgets/demobrowser/webview.h b/examples/webenginewidgets/demobrowser/webview.h
index a931d3702..e3df8f795 100644
--- a/examples/webenginewidgets/demobrowser/webview.h
+++ b/examples/webenginewidgets/demobrowser/webview.h
@@ -65,16 +65,11 @@ QT_END_NAMESPACE
class BrowserMainWindow;
class WebPage : public QWebEnginePage {
Q_OBJECT
-
-signals:
- void loadingUrl(const QUrl &url);
-
public:
WebPage(QWebEngineProfile *profile, QObject *parent = 0);
BrowserMainWindow *mainWindow();
protected:
- bool acceptNavigationRequest(const QUrl &url, NavigationType type, bool isMainFrame) Q_DECL_OVERRIDE;
QWebEnginePage *createWindow(QWebEnginePage::WebWindowType type) Q_DECL_OVERRIDE;
#if !defined(QT_NO_UITOOLS)
QObject *createPlugin(const QString &classId, const QUrl &url, const QStringList &paramNames, const QStringList &paramValues);
@@ -94,7 +89,6 @@ private:
// set the webview mousepressedevent
Qt::KeyboardModifiers m_keyboardModifiers;
Qt::MouseButtons m_pressedButtons;
- QUrl m_loadingUrl;
};
class WebView : public QWebEngineView {