diff options
Diffstat (limited to 'src/views')
| -rw-r--r-- | src/views/dolphinview.cpp | 1 | ||||
| -rw-r--r-- | src/views/dolphinview.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 872853642..2ffc33e08 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -158,6 +158,7 @@ DolphinView::DolphinView(const KUrl& url, QWidget* parent) : KFileItemModel* model = fileItemModel(); if (model) { connect(model, SIGNAL(loadingCompleted()), this, SLOT(slotLoadingCompleted())); + connect(model, SIGNAL(sortProgress(int)), this, SIGNAL(sortProgress(int))); } KItemListView* view = controller->view(); diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 130657b16..b1d057e6f 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -492,6 +492,8 @@ signals: */ void pathLoadingProgress(int percent); + void sortProgress(int percent); + /** * Is emitted if the DolphinView::setUrl() is invoked but the URL is not * a directory. @@ -670,8 +672,6 @@ private slots: void hideToolTip(); - //void slotUrlChangeRequested(const KUrl& url); - private: KFileItemModel* fileItemModel() const; |
