From 4aff36d14870488397a034a55f7f6cb83796d3e3 Mon Sep 17 00:00:00 2001 From: Elvis Angelaccio Date: Sun, 11 Mar 2018 17:07:20 +0100 Subject: [PATCH] Add missing this parameter Forgot to mention it while reviewing D11012. --- src/trash/dolphintrash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trash/dolphintrash.cpp b/src/trash/dolphintrash.cpp index 10d9badf57..cb2e3be665 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:/")); }