From 0a7aeb38a0f9c0fbf8923aa2cc14838dc4afbcf4 Mon Sep 17 00:00:00 2001 From: dgelessus Date: Sat, 2 Mar 2024 23:45:43 +0100 Subject: [PATCH] Fix base class link type in QLayerSDLAnimation The base class of plLayerSDLAnimation is actually plLayerAnimationBase and not plLayerAnimation. This was declared inconsistently in libHSPlasma (see H-uru/libhsplasma#281). --- src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp b/src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp index 9007839..62a10f4 100644 --- a/src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp +++ b/src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp @@ -27,7 +27,7 @@ QLayerSDLAnimation::QLayerSDLAnimation(plCreatable* pCre, QWidget* parent) fLayerAnimLink = new QCreatableLink(this, false); fLayerAnimLink->setCreatable(lay, tr("Layer Animation Properties")); - fLayerAnimLink->setForceType(kLayerAnimation); + fLayerAnimLink->setForceType(kLayerAnimationBase); fVarName = new QLineEdit(this); fVarName->setText(st2qstr(lay->getVarName()));