diff options
author | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-20 22:29:56 +0200 |
---|---|---|
committer | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-20 22:29:56 +0200 |
commit | 89772b99957eff256f87d822b7741bb3e8f62276 (patch) | |
tree | b61f673ce2e5f28e1fbce6c05ca51230b1b9997e /src/bookmarks/bookmarkprovider.h | |
parent | Improved the code to load the bookmarks file using KStandardDirs and other mi... (diff) | |
download | rekonq-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.h | 6 |
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); |