diff options
| author | Elvis Angelaccio <[email protected]> | 2018-03-11 17:07:20 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2018-03-11 17:07:20 +0100 |
| commit | 4aff36d14870488397a034a55f7f6cb83796d3e3 (patch) | |
| tree | 2271a4fc17e704400cb2f9cc5afbd9a7e676c25e /src | |
| parent | f16fbcba4e9ed3cd48cb2c1a40c01daf1d511f4b (diff) | |
Add missing this parameter
Forgot to mention it while reviewing D11012.
Diffstat (limited to 'src')
| -rw-r--r-- | src/trash/dolphintrash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<void(KDirLister::*)()>(&KDirLister::completed), trashDirContentChanged); + connect(m_trashDirLister, static_cast<void(KDirLister::*)()>(&KDirLister::completed), this, trashDirContentChanged); m_trashDirLister->openUrl(QStringLiteral("trash:/")); } |
