1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-07 10:51:45 +00:00

Add missing this parameter

Forgot to mention it while reviewing D11012.
This commit is contained in:
Elvis Angelaccio 2018-03-11 17:07:20 +01:00
parent f16fbcba4e
commit 4aff36d148

View File

@ -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:/"));
}