From 7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 22 Nov 2006 17:13:11 +0000 Subject: 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 --- src/urlbutton.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/urlbutton.h') diff --git a/src/urlbutton.h b/src/urlbutton.h index 2b2f051f3..41d81c24b 100644 --- a/src/urlbutton.h +++ b/src/urlbutton.h @@ -18,34 +18,34 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef URLBUTTON_H -#define URLBUTTON_H +#ifndef UrlBUTTON_H +#define UrlBUTTON_H #include //Added by qt3to4: #include class KUrl; -class URLNavigator; +class UrlNavigator; class QPainter; /** - * @brief Base class for buttons of the URL navigator. + * @brief Base class for buttons of the Url navigator. * - * Each button of the URL navigator contains an URL, which + * Each button of the Url navigator contains an Url, which * is set as soon as the button has been clicked. * * @author Peter Penz */ -class URLButton : public QPushButton +class UrlButton : public QPushButton { Q_OBJECT public: - URLButton(URLNavigator* parent); - virtual ~URLButton(); + UrlButton(UrlNavigator* parent); + virtual ~UrlButton(); - URLNavigator* urlNavigator() const; + UrlNavigator* urlNavigator() const; protected: enum DisplayHint { @@ -65,7 +65,7 @@ protected: private: int m_displayHint; - URLNavigator* m_urlNavigator; + UrlNavigator* m_urlNavigator; }; #endif -- cgit v1.3