summaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkprovider.h
diff options
context:
space:
mode:
authorJon Ander Peñalba <jonan88@gmail.com>2010-08-20 22:29:56 +0200
committerJon Ander Peñalba <jonan88@gmail.com>2010-08-20 22:29:56 +0200
commit89772b99957eff256f87d822b7741bb3e8f62276 (patch)
treeb61f673ce2e5f28e1fbce6c05ca51230b1b9997e /src/bookmarks/bookmarkprovider.h
parentImproved the code to load the bookmarks file using KStandardDirs and other mi... (diff)
downloadrekonq-89772b99957eff256f87d822b7741bb3e8f62276.tar.xz
Minor changes in BookmarkProvider. Searching for bookmarks should be a bit faster
Diffstat (limited to 'src/bookmarks/bookmarkprovider.h')
-rw-r--r--src/bookmarks/bookmarkprovider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/bookmarkprovider.h b/src/bookmarks/bookmarkprovider.h
index 61b5d12d..6036011e 100644
--- a/src/bookmarks/bookmarkprovider.h
+++ b/src/bookmarks/bookmarkprovider.h
@@ -132,11 +132,11 @@ public slots:
* @short Waits for signal that the group with the address has been modified by the caller.
* Waits for signal that the group (or any of its children) with the address
* @p groupAddress (e.g. "/4/5") has been modified by the caller @p caller.
- * @param group bookmark group address
+ * @param groupAddress bookmark group address
* @param caller caller that modified the bookmarks
* @see KBookmarkManager::changed
*/
- void slotBookmarksChanged(const QString &group, const QString &caller);
+ void slotBookmarksChanged(const QString &groupAddress, const QString &caller);
void fillBookmarkBar(BookmarkToolBar *toolBar);
private slots:
@@ -144,7 +144,7 @@ private slots:
void slotPanelChanged();
private:
- QList<KBookmark> find(QList<KBookmark> list, const KBookmark &bookmark, const QString &text);
+ void find(QList<KBookmark> *list, const KBookmark &bookmark, const QString &text);
QString titleForBookmarkUrl(const KBookmark &bookmark, const QString &url);
KBookmark bookmarkForUrl(const KBookmark &bookmark, const KUrl &url);