summaryrefslogtreecommitdiff
path: root/src/newtabpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-11-14 18:49:04 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-12 16:40:28 +0100
commitb111a11cb46bfd572c2fed9c67d648bcff10a3ce (patch)
treea5a12a0ac980f6af2fe245d8cdd8575dd8e95601 /src/newtabpage.cpp
parentlet history, bookmarks and passwords sync on change (first bits) (diff)
downloadrekonq-b111a11cb46bfd572c2fed9c67d648bcff10a3ce.tar.xz
BookmarkProvider --> BookmarkManager
We have 7 managers and 1 provider... finally fixing this strange thing!
Diffstat (limited to 'src/newtabpage.cpp')
-rw-r--r--src/newtabpage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp
index 4929c9be..52b83bbd 100644
--- a/src/newtabpage.cpp
+++ b/src/newtabpage.cpp
@@ -34,7 +34,7 @@
// Local Includes
#include "application.h"
-#include "bookmarkprovider.h"
+#include "bookmarkmanager.h"
#include "downloadmanager.h"
#include "historymodels.h"
#include "mainview.h"
@@ -124,7 +124,7 @@ void NewTabPage::generate(const KUrl &url)
}
if (url == KUrl("about:bookmarks/edit"))
{
- rApp->bookmarkProvider()->bookmarkManager()->slotEditBookmarks();
+ rApp->bookmarkManager()->slotEditBookmarks();
return;
}
@@ -464,7 +464,7 @@ void NewTabPage::bookmarksPage()
KIconLoader::Toolbar);
m_root.document().findFirst(QL1S("#actions")).appendInside(editBookmarks);
- KBookmarkGroup bookGroup = rApp->bookmarkProvider()->rootGroup();
+ KBookmarkGroup bookGroup = rApp->bookmarkManager()->rootGroup();
if (bookGroup.isNull())
{
m_root.addClass(QL1S("empty"));