mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 05:26:45 +08:00
refs #522, mutex for mutable members (thread safe)
* copy/assignment/lock for mutable members * also removed redundant in status message (slack discussion MS/KB)
This commit is contained in:
@@ -13,14 +13,12 @@
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
CPixmap::CPixmap() = default;
|
||||
|
||||
CPixmap::CPixmap(const QPixmap &pixmap) : m_pixmap(pixmap), m_hasCachedPixmap(true)
|
||||
{
|
||||
this->fillByteArray();
|
||||
}
|
||||
|
||||
CPixmap::CPixmap(const CPixmap &other) : CValueObject()
|
||||
CPixmap::CPixmap(const CPixmap &other) : CValueObject(other)
|
||||
{
|
||||
*this = other;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user