compiler error fixed
This commit is contained in:
parent
4f8a76234a
commit
cb67a057d7
@ -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 )
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user