summaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkstreemodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bookmarks/bookmarkstreemodel.cpp')
-rw-r--r--src/bookmarks/bookmarkstreemodel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bookmarks/bookmarkstreemodel.cpp b/src/bookmarks/bookmarkstreemodel.cpp
index 836401a6..e731940c 100644
--- a/src/bookmarks/bookmarkstreemodel.cpp
+++ b/src/bookmarks/bookmarkstreemodel.cpp
@@ -323,6 +323,11 @@ 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 );