diff options
| author | Peter Penz <[email protected]> | 2006-11-22 17:13:11 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2006-11-22 17:13:11 +0000 |
| commit | 7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb (patch) | |
| tree | 48c9e04fccc22a57d0871273b610f2b5da8edd19 /src/urlbutton.h | |
| parent | 9075797f9b529d958fa1b6a2a4fe45bc00c4b69d (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/urlbutton.h')
| -rw-r--r-- | src/urlbutton.h | 20 |
1 files changed, 10 insertions, 10 deletions
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 <qpushbutton.h> //Added by qt3to4: #include <QEvent> 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 |
