┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/statusbar
diff options
context:
space:
mode:
authorMontel Laurent <[email protected]>2011-07-31 13:33:56 +0200
committerMontel Laurent <[email protected]>2011-07-31 13:33:56 +0200
commit08d655c2bc107449ee322f8b826710b7e690950b (patch)
tree6268fe56b9d4bb7fdad68841836c3265fb178284 /src/statusbar
parentf23e9496f303995557b744c03178f5dbd9b35016 (diff)
normalize signals/slots
Diffstat (limited to 'src/statusbar')
-rw-r--r--src/statusbar/dolphinstatusbar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/statusbar/dolphinstatusbar.cpp b/src/statusbar/dolphinstatusbar.cpp
index b005d45c6..055c4ccb8 100644
--- a/src/statusbar/dolphinstatusbar.cpp
+++ b/src/statusbar/dolphinstatusbar.cpp
@@ -55,8 +55,8 @@ DolphinStatusBar::DolphinStatusBar(QWidget* parent, DolphinView* view) :
m_showProgressBarTimer(0),
m_messageTimeStamp()
{
- connect(m_view, SIGNAL(urlChanged(const KUrl&)),
- this, SLOT(updateSpaceInfoContent(const KUrl&)));
+ connect(m_view, SIGNAL(urlChanged(KUrl)),
+ this, SLOT(updateSpaceInfoContent(KUrl)));
// Initialize message label
m_messageLabel = new KonqStatusBarMessageLabel(this);
@@ -73,7 +73,7 @@ DolphinStatusBar::DolphinStatusBar(QWidget* parent, DolphinView* view) :
connect(m_zoomSlider, SIGNAL(valueChanged(int)), this, SLOT(setZoomLevel(int)));
connect(m_zoomSlider, SIGNAL(sliderMoved(int)), this, SLOT(showZoomSliderToolTip(int)));
- connect(m_view, SIGNAL(zoomLevelChanged(int, int)), this, SLOT(slotZoomLevelChanged(int, int)));
+ connect(m_view, SIGNAL(zoomLevelChanged(int,int)), this, SLOT(slotZoomLevelChanged(int,int)));
// Initialize space information
m_spaceInfo = new StatusBarSpaceInfo(this);