plasma: build fix

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-02 21:54:41 +03:00
parent 809b90a113
commit f0bea8be5d
2 changed files with 3 additions and 3 deletions

View file

@ -438,7 +438,7 @@ void AppletInterface::gc()
PopupAppletInterface::PopupAppletInterface(AbstractJsAppletScript *parent)
: APPLETSUPERCLASS(parent)
: AppletInterface(parent)
{
connect(m_appletScriptEngine, SIGNAL(popupEvent(bool)), this, SIGNAL(popupEvent(bool)));
connect(m_appletScriptEngine, SIGNAL(popupEvent(bool)), this, SLOT(sourceAppletPopupEvent(bool)));
@ -561,7 +561,7 @@ void PopupAppletInterface::sourceAppletPopupEvent(bool show)
///////////// ContainmentInterface
ContainmentInterface::ContainmentInterface(AbstractJsAppletScript *parent)
: APPLETSUPERCLASS(parent),
: AppletInterface(parent),
m_movableApplets(true),
m_toolBox(0)
{

View file

@ -381,7 +381,7 @@ private:
};
class ContainmentInterface : public APPLETSUPERCLASS
class ContainmentInterface : public AppletInterface
{
Q_OBJECT
Q_PROPERTY(QScriptValue applets READ applets)