summaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkspanel.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-09-02 16:37:16 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-09-02 16:37:16 +0200
commit41c7700350e2609219bf1e6798e6f4e6cf91c8f2 (patch)
tree5947a12e45de523cf5e45c14e31a1e6520f3eba9 /src/bookmarks/bookmarkspanel.cpp
parentFix wrong highlights in the search strings (diff)
parentMake sure the model is only created ones (diff)
downloadrekonq-41c7700350e2609219bf1e6798e6f4e6cf91c8f2.tar.xz
Merge commit 'refs/merge-requests/196' of git://gitorious.org/rekonq/mainline into m196
Diffstat (limited to 'src/bookmarks/bookmarkspanel.cpp')
-rw-r--r--src/bookmarks/bookmarkspanel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/bookmarkspanel.cpp b/src/bookmarks/bookmarkspanel.cpp
index e88d3060..d082b557 100644
--- a/src/bookmarks/bookmarkspanel.cpp
+++ b/src/bookmarks/bookmarkspanel.cpp
@@ -43,10 +43,12 @@
BookmarksPanel::BookmarksPanel(const QString &title, QWidget *parent, Qt::WindowFlags flags)
: UrlPanel(title, parent, flags)
+ , model(new BookmarksTreeModel(this))
, m_loadingState(false)
{
setObjectName("bookmarksPanel");
setVisible(ReKonfig::showBookmarksPanel());
+ connect(model, SIGNAL(bookmarksUpdated()), this, SLOT(startLoadFoldedState()));
}
@@ -177,7 +179,5 @@ KBookmark BookmarksPanel::bookmarkForIndex(const QModelIndex &index)
QAbstractItemModel* BookmarksPanel::getModel()
{
- BookmarksTreeModel *model = new BookmarksTreeModel(this);
- connect(model, SIGNAL(bookmarksUpdated()), this, SLOT(startLoadFoldedState()));
return model;
}