1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-30 14:50:12 +03:00

fix move constructor

This commit is contained in:
audoban 2017-03-15 02:52:13 -05:00
parent 4b0e558da5
commit ee31d0cbb9

View File

@ -49,7 +49,9 @@ public:
, m_isMaxHorz(other.m_isMaxHorz)
, m_isFullscreen(other.m_isFullscreen)
, m_isPlasmaDesktop(other.m_isPlasmaDesktop)
, m_wid(std::move(other.m_wid)) {
, m_wid(std::move(other.m_wid))
, m_geometry(std::move(other.m_geometry))
{
}
inline WindowInfoWrap &operator=(WindowInfoWrap &&rhs);