From: Elvis Angelaccio Date: Sun, 11 Mar 2018 16:07:20 +0000 (+0100) Subject: Add missing this parameter X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/4aff36d14870488397a034a55f7f6cb83796d3e3?ds=sidebyside Add missing this parameter Forgot to mention it while reviewing D11012. --- diff --git a/src/trash/dolphintrash.cpp b/src/trash/dolphintrash.cpp index 10d9badf5..cb2e3be66 100644 --- a/src/trash/dolphintrash.cpp +++ b/src/trash/dolphintrash.cpp @@ -40,7 +40,7 @@ Trash::Trash() bool isTrashEmpty = m_trashDirLister->items().isEmpty(); emit emptinessChanged(isTrashEmpty); }; - connect(m_trashDirLister, static_cast(&KDirLister::completed), trashDirContentChanged); + connect(m_trashDirLister, static_cast(&KDirLister::completed), this, trashDirContentChanged); m_trashDirLister->openUrl(QStringLiteral("trash:/")); }