Skip to content

Commit

Permalink
Don't use old plugin id
Browse files Browse the repository at this point in the history
Fixes #10
  • Loading branch information
zzag committed Jun 17, 2019
1 parent a7f84ad commit 7d6fda8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kcm/YetAnotherMagicLampEffectKCM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <KAboutData>

YetAnotherMagicLampEffectKCM::YetAnotherMagicLampEffectKCM(QWidget* parent, const QVariantList& args)
: KCModule(KAboutData::pluginData(QStringLiteral("kwin4_effect_yaml")), parent, args)
: KCModule(KAboutData::pluginData(QStringLiteral("kwin4_effect_yetanothermagiclamp")), parent, args)
, m_ui(new Ui::YetAnotherMagicLampEffectKCM)
{
m_ui->setupUi(this);
Expand All @@ -45,5 +45,5 @@ void YetAnotherMagicLampEffectKCM::save()
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"),
QStringLiteral("/Effects"),
QDBusConnection::sessionBus());
interface.reconfigureEffect(QStringLiteral("kwin4_effect_yaml"));
interface.reconfigureEffect(QStringLiteral("kwin4_effect_yetanothermagiclamp"));
}

0 comments on commit 7d6fda8

Please sign in to comment.