diff options
| author | Peter Penz <[email protected]> | 2012-04-11 16:42:46 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-04-11 16:43:11 +0200 |
| commit | b28a5a6248059566e16c9fcf887b5545034ba52f (patch) | |
| tree | 0e0d81cf4727c479f44649ae3c02de598800698a /src/dolphinmainwindow.cpp | |
| parent | 6c3d9acbc22ea9463ba40ef84c9e8c8419dfacf3 (diff) | |
Minor API-cleanups for DolphinView
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 22d8af3c3..9b2a1cea8 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -2088,9 +2088,9 @@ void DolphinMainWindow::connectViewSignals(DolphinViewContainer* container) this, SLOT(openNewTab(KUrl))); connect(view, SIGNAL(requestContextMenu(QPoint,KFileItem,KUrl,QList<QAction*>)), this, SLOT(openContextMenu(QPoint,KFileItem,KUrl,QList<QAction*>))); - connect(view, SIGNAL(startedDirLoading(KUrl)), + connect(view, SIGNAL(dirLoadingStarted()), this, SLOT(enableStopAction())); - connect(view, SIGNAL(finishedDirLoading(KUrl)), + connect(view, SIGNAL(dirLoadingCompleted()), this, SLOT(disableStopAction())); connect(view, SIGNAL(goBackRequested()), this, SLOT(goBack())); |
