Mini-Breakthrough: Animantion works.
This commit is contained in:
@@ -136,6 +136,7 @@ public:
|
||||
// Copy Assignment Operator
|
||||
BCValueList& operator=(const BCValueList& other)
|
||||
{
|
||||
qDebug() << "BC copy assignment: " << this;
|
||||
QList<BCValue>::operator=( other );
|
||||
return *this;
|
||||
}
|
||||
@@ -143,6 +144,7 @@ public:
|
||||
// Move Assignment Operator
|
||||
BCValueList& operator=(BCValueList&& other) noexcept
|
||||
{
|
||||
qDebug() << "BC move assignment: " << this;
|
||||
QList<BCValue>::operator=( other );
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user