Skip to content

Commit

Permalink
Fix base class link type in QLayerSDLAnimation
Browse files Browse the repository at this point in the history
The base class of plLayerSDLAnimation is actually plLayerAnimationBase
and not plLayerAnimation. This was declared inconsistently in
libHSPlasma (see H-uru/libhsplasma#281).
  • Loading branch information
dgelessus committed Mar 2, 2024
1 parent 228f0e5 commit 0a7aeb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PrpShop/PRP/Surface/QLayerSDLAnimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()));
Expand Down

0 comments on commit 0a7aeb3

Please sign in to comment.