┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Samir <[email protected]>2022-10-19 17:45:10 +0200
committerAhmad Samir <[email protected]>2022-10-19 17:45:10 +0200
commit1d04d04cf301e82971d90cceb541f368192e2167 (patch)
treeb9c56adf6df0a9944217e9d5272cf852f796d10a
parent29f283277b348543cc1cfa3454d0a75431f7a7a6 (diff)
Fix build with older KF versions
GIT_SILENT
-rw-r--r--src/trash/dolphintrash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trash/dolphintrash.cpp b/src/trash/dolphintrash.cpp
index 236f9817d..906da2b9d 100644
--- a/src/trash/dolphintrash.cpp
+++ b/src/trash/dolphintrash.cpp
@@ -75,7 +75,7 @@ void Trash::empty(QWidget *window)
KIO::Job* job = KIO::emptyTrash();
KJobWidgets::setWindow(job, window);
job->uiDelegate()->setAutoErrorHandlingEnabled(true);
- QObject::connect(emptyJob, &KIO::Job::result, notifyEmptied);
+ QObject::connect(job, &KIO::Job::result, notifyEmptied);
}
#endif
}