X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/81fcd720a2cc095262e52b8a40dd1472d774a415..33ddc0e7913dfa5f90cbd0b231d766f39cd48b4b:/src/dolphinview.cpp diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 6053ac189..207b236ee 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -84,8 +84,8 @@ DolphinView::DolphinView(QWidget* parent, connect(m_dirLister, SIGNAL(completed()), this, SLOT(updateCutItems())); - connect(m_dirLister, SIGNAL(newItems(const KFileItemList&)), - this, SLOT(generatePreviews(const KFileItemList&))); + connect(m_dirLister, SIGNAL(newItems(const QList&)), + this, SLOT(generatePreviews(const QList&))); m_controller = new DolphinController(this); m_controller->setUrl(url); @@ -576,7 +576,7 @@ void DolphinView::startDirLister(const KUrl& url, bool reload) const KUrl& dirListerUrl = m_dirLister->url(); if ((dirListerUrl == url) || !m_dirLister->url().isParentOf(url)) { // The current URL is not a child of the dir lister - // URL. This may happen when e. g. a bookmark has been selected + // URL. This may happen when e. g. a place has been selected // and hence the view must be reset. keepOldDirs = false; }