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/dolphinstatusbar.cpp | |
| 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/dolphinstatusbar.cpp')
| -rw-r--r-- | src/dolphinstatusbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dolphinstatusbar.cpp b/src/dolphinstatusbar.cpp index 44b6e2345..a5fb66d64 100644 --- a/src/dolphinstatusbar.cpp +++ b/src/dolphinstatusbar.cpp @@ -39,7 +39,7 @@ DolphinStatusBar::DolphinStatusBar(DolphinView* parent) : m_messageLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed); m_spaceInfo = new StatusBarSpaceInfo(this); - m_spaceInfo->setURL(parent->url()); + m_spaceInfo->setUrl(parent->url()); m_progressText = new QLabel(this); m_progressText->hide(); @@ -56,8 +56,8 @@ DolphinStatusBar::DolphinStatusBar(DolphinView* parent) : setMinimumHeight(size.height()); m_messageLabel->setMinimumTextHeight(size.height()); - connect(parent, SIGNAL(signalURLChanged(const KUrl&)), - this, SLOT(slotURLChanged(const KUrl&))); + connect(parent, SIGNAL(signalUrlChanged(const KUrl&)), + this, SLOT(slotUrlChanged(const KUrl&))); } @@ -158,9 +158,9 @@ void DolphinStatusBar::slotProgressTimer() } } -void DolphinStatusBar::slotURLChanged(const KUrl& url) +void DolphinStatusBar::slotUrlChanged(const KUrl& url) { - m_spaceInfo->setURL(url); + m_spaceInfo->setUrl(url); } #include "dolphinstatusbar.moc" |
