]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/dolphinview.cpp
1) Make sure that size qprogressbar is really updated after each change
[dolphin.git] / src / dolphinview.cpp
index 492c8dafb3908c554b6ca811744aac63035eef3a..bfca285cf7ad9fcdbcd0faac4330ecc02b3ea523 100644 (file)
@@ -95,10 +95,6 @@ DolphinView::DolphinView(QWidget* parent,
     m_controller = new DolphinController(this);
     m_controller->setUrl(url);
 
-    // Receiver of the DolphinView signal 'urlChanged()' don't need
-    // to care whether the internal controller changed the URL already or whether
-    // the controller just requested an URL change and will be updated later.
-    // In both cases the URL has been changed:
     connect(m_controller, SIGNAL(urlChanged(const KUrl&)),
             this, SIGNAL(urlChanged(const KUrl&)));
     connect(m_controller, SIGNAL(requestUrlChange(const KUrl&)),
@@ -1207,7 +1203,7 @@ void DolphinView::pasteToUrl(const KUrl& url)
 
 void DolphinView::slotRequestUrlChange(const KUrl& url)
 {
-    emit urlChanged(url);
+    emit requestUrlChange(url);
     m_controller->setUrl(url);
 }