diff options
| author | Peter Penz <[email protected]> | 2007-02-17 10:31:52 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-02-17 10:31:52 +0000 |
| commit | 175fe7ff47ccff39b0e77f80491a9701d025375e (patch) | |
| tree | 6c2cb040129fbd5050549c970d0219de96808314 /src/bookmarkselector.h | |
| parent | 86110e2778d6ac5eb4454f58de532cabfcd75dbf (diff) | |
Cleanup of the URL navigator, so that the DolphinMainWindow and the DolphinView are not used anymore. This will make it easier for us later on when moving the URL navigator outside Dolphin to make it accessable for other parts. Currently the bookmarks are still accessed by DolphinSettings, but this will be cleaned up later...
svn path=/trunk/KDE/kdebase/apps/; revision=634432
Diffstat (limited to 'src/bookmarkselector.h')
| -rw-r--r-- | src/bookmarkselector.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/bookmarkselector.h b/src/bookmarkselector.h index c662618ec..50fc2e3e5 100644 --- a/src/bookmarkselector.h +++ b/src/bookmarkselector.h @@ -1,6 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006 by Peter Penz * - * [email protected] * + * Copyright (C) 2006 by Peter Penz ([email protected]) * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -35,7 +34,6 @@ class KUrl; * inside the bookmark selector. * * @see UrlNavigator - * @author Peter Penz <[email protected]> */ class BookmarkSelector : public UrlButton { @@ -74,9 +72,9 @@ public: signals: /** * Is send when a bookmark has been activated by the user. - * @param index Index of the selected bookmark. + * @param url URL of the selected bookmark. */ - void bookmarkActivated(int index); + void bookmarkActivated(const KUrl& url); protected: /** @@ -94,6 +92,7 @@ private slots: private: int m_selectedIndex; + UrlNavigator* m_urlNavigator; Q3PopupMenu* m_bookmarksMenu; }; |
