diff options
author | Bernhard Beschow <bbeschow@cs.tu-berlin.de> | 2009-12-14 17:43:05 +0100 |
---|---|---|
committer | Bernhard Beschow <bbeschow@cs.tu-berlin.de> | 2009-12-14 21:55:50 +0100 |
commit | 412e9b019ad5c868dd0c5573bf185a32cca31b7d (patch) | |
tree | 1a1ee0cddabefdd62e2bef39eef47e52d222e7f9 /src/bookmarks | |
parent | rekonq 0.3.21 (diff) | |
download | rekonq-412e9b019ad5c868dd0c5573bf185a32cca31b7d.tar.xz |
factor out WebTab class from WebView
* it basically represents a tab in rekonq
* everything that happens within one tab should go here (wallet bar, find bar?)
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/bookmarksmanager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarksmanager.cpp b/src/bookmarks/bookmarksmanager.cpp index 1c881e08..6442192a 100644 --- a/src/bookmarks/bookmarksmanager.cpp +++ b/src/bookmarks/bookmarksmanager.cpp @@ -32,6 +32,7 @@ // Local Includes #include "mainwindow.h" +#include "webtab.h" #include "webview.h" // KDE Includes @@ -88,7 +89,7 @@ QString BookmarkOwner::currentUrl() const QString BookmarkOwner::currentTitle() const { - return Application::instance()->mainWindow()->currentTab()->title(); + return Application::instance()->mainWindow()->currentTab()->view()->title(); } |