From a3fd9b3a4b0c965d9a460e059f73f1ce0d52cc66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Ander=20Pe=C3=B1alba?= Date: Mon, 30 Aug 2010 10:48:54 +0200 Subject: Minor changes in the panels --- src/bookmarks/bookmarkspanel.cpp | 1 - src/history/historypanel.cpp | 25 ++++++++++++------------- src/panels/urlpanel.cpp | 2 +- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/bookmarks/bookmarkspanel.cpp b/src/bookmarks/bookmarkspanel.cpp index 118074d0..0d912113 100644 --- a/src/bookmarks/bookmarkspanel.cpp +++ b/src/bookmarks/bookmarkspanel.cpp @@ -46,7 +46,6 @@ BookmarksPanel::BookmarksPanel(const QString &title, QWidget *parent, Qt::Window , m_loadingState(false) { setObjectName("bookmarksPanel"); - setVisible(ReKonfig::showBookmarksPanel()); } diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp index 79efb2b1..c0097965 100644 --- a/src/history/historypanel.cpp +++ b/src/history/historypanel.cpp @@ -62,18 +62,6 @@ HistoryPanel::~HistoryPanel() } -void HistoryPanel::setup() -{ - UrlPanel::setup(); - kDebug() << "History panel..."; - - m_treeView->header()->hideSection(1); - - const UrlFilterProxyModel *proxy = static_cast(m_treeView->model()); - m_treeView->expand(proxy->index(0, 0)); -} - - void HistoryPanel::contextMenuItem(const QPoint &pos) { KMenu menu; @@ -144,8 +132,19 @@ void HistoryPanel::openAll() } +void HistoryPanel::setup() +{ + UrlPanel::setup(); + kDebug() << "History panel..."; + + m_treeView->header()->hideSection(1); + + const UrlFilterProxyModel *proxy = static_cast(m_treeView->model()); + m_treeView->expand(proxy->index(0, 0)); +} + + QAbstractItemModel* HistoryPanel::getModel() { return Application::historyManager()->historyTreeModel(); } - diff --git a/src/panels/urlpanel.cpp b/src/panels/urlpanel.cpp index a4cfe682..887dacf7 100644 --- a/src/panels/urlpanel.cpp +++ b/src/panels/urlpanel.cpp @@ -64,7 +64,7 @@ UrlPanel::~UrlPanel() void UrlPanel::showing(bool b) { - if(b && !_loaded) + if(!_loaded && b) { setup(); _loaded = true; -- cgit v1.2.1