diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-03 17:57:38 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-03 17:57:38 +0200 |
commit | 821460600690723043ec844b4187362ca758a6a3 (patch) | |
tree | 5d6e1d05d0f472b502525ac18190b11a81881db6 /src/bookmarks/bookmarkspanel.cpp | |
parent | Include all .moc files removed in the previous commit (diff) | |
download | rekonq-821460600690723043ec844b4187362ca758a6a3.tar.xz |
ok, it seems working now. But I'm not sure this is the right fix..
Diffstat (limited to 'src/bookmarks/bookmarkspanel.cpp')
-rw-r--r-- | src/bookmarks/bookmarkspanel.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bookmarks/bookmarkspanel.cpp b/src/bookmarks/bookmarkspanel.cpp index 27c60e46..e11c0280 100644 --- a/src/bookmarks/bookmarkspanel.cpp +++ b/src/bookmarks/bookmarkspanel.cpp @@ -133,6 +133,9 @@ void BookmarksPanel::onExpand(const QModelIndex &index) void BookmarksPanel::loadFoldedState(const QModelIndex &root) { QAbstractItemModel *model = panelTreeView()->model(); + if(!model) + return; + int count = model->rowCount(root); QModelIndex index; |