It's emitted when the user has confirmed emptying trash and
it will actually commence emptying it.
Gbp-Pq: Name upstream_17cd1c9b_DeleteOrTrashJob-Add-started-signal.patch
// show the "File is too large to Trash" error message
job->uiDelegate()->setAutoErrorHandlingEnabled(false);
q->addSubjob(job);
+
+ Q_EMIT q->started();
}
}
*/
void start() override;
+Q_SIGNALS:
+ /**
+ * Emitted when the actual delete or trash job has been started.
+ *
+ * This can be used to display a busy indicator after the user has confirmed
+ * this operation.
+ *
+ * @since 6.15
+ */
+ void started();
+
private:
void slotResult(KJob *job) override;