diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-04-17 16:18:39 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-04-17 16:18:39 +0200 |
commit | bac4a843a3e11fe2a7af52cb4fab189761515e7c (patch) | |
tree | a0d3e1655d319445a424e8dfed14773fe32cc863 /src/bookmarks | |
parent | - Enable context menu for actions inside bookmark bar folder (diff) | |
download | rekonq-bac4a843a3e11fe2a7af52cb4fab189761515e7c.tar.xz |
Forget to save file
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/bookmarkstreemodel.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bookmarks/bookmarkstreemodel.cpp b/src/bookmarks/bookmarkstreemodel.cpp index e731940c..836401a6 100644 --- a/src/bookmarks/bookmarkstreemodel.cpp +++ b/src/bookmarks/bookmarkstreemodel.cpp @@ -323,11 +323,6 @@ void BookmarksTreeModel::populate( BtmItem *node, KBookmarkGroup bmg) BtmItem *newChild = new BtmItem( bm ); if( bm.isGroup() ) populate( newChild, bm.toGroup() ); - else - { - Application::bookmarkProvider()->completionObject()->addItem(bm.url().url()); - //QMessageBox::information(new QWidget(), "", bm.url().url()); - } node->appendChild( newChild ); bm = bmg.next( bm ); |