diff --git a/src/util/externalcommand.h b/src/util/externalcommand.h --- a/src/util/externalcommand.h +++ b/src/util/externalcommand.h @@ -101,8 +101,6 @@ /**< @return pointer to the Report or nullptr */ Report* report(); - void emitReport(const QVariantMap& report) { emit reportSignal(report); } - // KAuth /**< start ExternalCommand Helper */ bool startHelper(); @@ -123,6 +121,7 @@ public Q_SLOTS: void emitProgress(KJob*, unsigned long percent) { emit progress(percent); }; + void emitReport(const QVariantMap& report) { emit reportSignal(report); } private: void setExitCode(int i);