From 08d655c2bc107449ee322f8b826710b7e690950b Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Sun, 31 Jul 2011 13:33:56 +0200 Subject: normalize signals/slots --- src/statusbar/dolphinstatusbar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/statusbar') 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); -- cgit v1.3