compiler error fixed

This commit is contained in:
Uwe Rathmann 2022-09-13 13:05:47 +02:00
parent 4f8a76234a
commit cb67a057d7
2 changed files with 7 additions and 2 deletions

View File

@ -92,6 +92,11 @@ static inline bool qskCheckReceiverThread( const QObject* receiver )
return ( thread == QThread::currentThread() );
}
QskHintAnimator::QskHintAnimator() noexcept
: m_index( -1 )
{
}
QskHintAnimator::QskHintAnimator( const QskAspect aspect, int index ) noexcept
: m_aspect( aspect )
, m_index( index )

View File

@ -19,7 +19,7 @@ class QSK_EXPORT QskHintAnimator : public QskVariantAnimator
using Inherited = QskVariantAnimator;
public:
QskHintAnimator() noexcept = default;
QskHintAnimator() noexcept;
QskHintAnimator( QskAspect, int index ) noexcept;
~QskHintAnimator() override;
@ -42,7 +42,7 @@ class QSK_EXPORT QskHintAnimator : public QskVariantAnimator
private:
QskAspect m_aspect;
int m_index = -1;
int m_index;
QskAnimationHint::UpdateFlags m_updateFlags;
QPointer< QskControl > m_control;
};