fix move constructor

pull/1/head
Johan Smith Agudelo Rodriguez 8 years ago
parent 7657fb036f
commit b6d31316a9

@ -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);

Loading…
Cancel
Save