kded: Fix class name

This commit is contained in:
Devin Lin 2023-03-31 23:55:07 -07:00
parent 763803528d
commit 0d7fde0ea1
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
#include "start.h" #include "start.h"
PlasmaMobileStartDaemon::PlasmaMobileStartDaemon(QObject *parent, const QList<QVariant> &) Start::Start(QObject *parent, const QList<QVariant> &)
: KDEDModule{parent} : KDEDModule{parent}
{ {
auto *job = new KIO::CommandLauncherJob(QStringLiteral("plasma-mobile-envmanager --apply-settings"), {}); auto *job = new KIO::CommandLauncherJob(QStringLiteral("plasma-mobile-envmanager --apply-settings"), {});

View file

@ -5,10 +5,10 @@
#include <kdedmodule.h> #include <kdedmodule.h>
class PlasmaMobileStartDaemon : public KDEDModule class Start : public KDEDModule
{ {
Q_OBJECT Q_OBJECT
public: public:
PlasmaMobileStartDaemon(QObject *parent, const QList<QVariant> &); Start(QObject *parent, const QList<QVariant> &);
}; };