mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 22:53:09 +00:00
kded: Fix class name
This commit is contained in:
parent
763803528d
commit
0d7fde0ea1
2 changed files with 3 additions and 3 deletions
|
|
@ -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"), {});
|
||||||
|
|
|
||||||
|
|
@ -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> &);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue