diff --git a/kded/start.cpp b/kded/start.cpp index 72381e7b..25484d16 100644 --- a/kded/start.cpp +++ b/kded/start.cpp @@ -9,7 +9,7 @@ #include "start.h" -PlasmaMobileStartDaemon::PlasmaMobileStartDaemon(QObject *parent, const QList &) +Start::Start(QObject *parent, const QList &) : KDEDModule{parent} { auto *job = new KIO::CommandLauncherJob(QStringLiteral("plasma-mobile-envmanager --apply-settings"), {}); diff --git a/kded/start.h b/kded/start.h index ce7fd2e4..200d2d0f 100644 --- a/kded/start.h +++ b/kded/start.h @@ -5,10 +5,10 @@ #include -class PlasmaMobileStartDaemon : public KDEDModule +class Start : public KDEDModule { Q_OBJECT public: - PlasmaMobileStartDaemon(QObject *parent, const QList &); + Start(QObject *parent, const QList &); };