diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-12-05 18:09:44 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:06 +0100 |
commit | e81948d7b150c47e6776d87f8095de52a340b02d (patch) | |
tree | c9248bcc01f768909987610b31e097eaa6db8e22 /src/application.h | |
parent | Don't leak actions (diff) | |
download | rekonq-e81948d7b150c47e6776d87f8095de52a340b02d.tar.xz |
Fix open external link on web app
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/application.h b/src/application.h index 5e1be2e4..d5165a55 100644 --- a/src/application.h +++ b/src/application.h @@ -43,7 +43,7 @@ class TabWindow; class WebWindow; class WebTab; - +class WebPage; typedef QList< QWeakPointer<TabWindow> > TabWindowList; typedef QList<WebTab *> WebAppList; @@ -112,6 +112,8 @@ private Q_SLOTS: void createWebAppShortcut(); void newPrivateBrowsingWindow(); + + void pageCreated(WebPage *); private: TabWindowList m_tabWindows; |