repaintShadow() isn't a const function, so don't cast that way.
svn path=/trunk/KDE/kdebase/workspace/; revision=959931
This commit is contained in:
parent
76a819be63
commit
c6c6af61a6
1 changed files with 1 additions and 1 deletions
|
@ -1259,7 +1259,7 @@ double KCommonDecorationUnstable::shadowSaturation( ShadowType type ) const
|
||||||
|
|
||||||
void KCommonDecorationUnstable::repaintShadow()
|
void KCommonDecorationUnstable::repaintShadow()
|
||||||
{
|
{
|
||||||
return static_cast<const KDecorationUnstable*>( decoration() )->repaintShadow();
|
return static_cast<KDecorationUnstable*>( decoration() )->repaintShadow();
|
||||||
}
|
}
|
||||||
bool KCommonDecorationUnstable::compositingActive() const
|
bool KCommonDecorationUnstable::compositingActive() const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue