From 0d7fde0ea1f9512d35744dc2209c3a1ae3431127 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 31 Mar 2023 23:55:07 -0700 Subject: [PATCH] kded: Fix class name --- kded/start.cpp | 2 +- kded/start.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 &); };