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:
parent
4b0e558da5
commit
ee31d0cbb9
@ -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…
x
Reference in New Issue
Block a user