┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/bookmarkselector.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-11-22 17:13:11 +0000
committerPeter Penz <[email protected]>2006-11-22 17:13:11 +0000
commit7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb (patch)
tree48c9e04fccc22a57d0871273b610f2b5da8edd19 /src/bookmarkselector.h
parent9075797f9b529d958fa1b6a2a4fe45bc00c4b69d (diff)
As KURL has been renamed to KUrl all classes and methods, which use the term 'URL', have been converted to use 'Url' instead (e. g. the class URLNavigator is called UrlNavigator now).
svn path=/trunk/playground/utils/dolphin/; revision=606991
Diffstat (limited to 'src/bookmarkselector.h')
-rw-r--r--src/bookmarkselector.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/bookmarkselector.h b/src/bookmarkselector.h
index 209cf7310..3a967b5dc 100644
--- a/src/bookmarkselector.h
+++ b/src/bookmarkselector.h
@@ -26,7 +26,7 @@
//Added by qt3to4:
#include <Q3PopupMenu>
-class URLNavigator;
+class UrlNavigator;
class Q3PopupMenu;
class KUrl;
@@ -36,10 +36,10 @@ class KUrl;
* The icon from the current selected bookmark is shown
* inside the bookmark selector.
*
- * @see URLNavigator
+ * @see UrlNavigator
* @author Peter Penz <[email protected]>
*/
-class BookmarkSelector : public URLButton
+class BookmarkSelector : public UrlButton
{
Q_OBJECT
@@ -48,16 +48,16 @@ public:
* @param parent Parent widget where the bookmark selector
* is embedded into.
*/
- BookmarkSelector(URLNavigator* parent);
+ BookmarkSelector(UrlNavigator* parent);
virtual ~BookmarkSelector();
/**
- * Updates the selection dependent from the given URL \a url. The
- * URL must not match exactly to one of the available bookmarks:
- * The bookmark which is equal to the URL or at least is a parent URL
- * is selected. If there are more than one possible parent URL candidates,
- * the bookmark which covers the bigger range of the URL is selected.
+ * Updates the selection dependent from the given Url \a url. The
+ * Url must not match exactly to one of the available bookmarks:
+ * The bookmark which is equal to the Url or at least is a parent Url
+ * is selected. If there are more than one possible parent Url candidates,
+ * the bookmark which covers the bigger range of the Url is selected.
*/
void updateSelection(const KUrl& url);
@@ -79,7 +79,7 @@ signals:
protected:
/**
- * Draws the icon of the selected URL as content of the URL
+ * Draws the icon of the selected Url as content of the Url
* selector.
*/
virtual void drawButton(QPainter* painter);