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

various fixes to WindowInfoWrap

This commit is contained in:
Johan Smith Agudelo Rodriguez 2017-03-23 22:12:11 -05:00
parent e6374da532
commit b407efb557

View File

@ -23,7 +23,6 @@
#include <QWindow>
#include <QRect>
#include <QDebug>
namespace Latte {
@ -43,7 +42,7 @@ public:
{
}
WindowInfoWrap(WindowInfoWrap &&o) noexcept
constexpr WindowInfoWrap(WindowInfoWrap &&o) noexcept
: m_wid(std::move(o.m_wid))
, m_geometry(std::move(o.m_geometry))
, m_isValid(o.m_isValid)
@ -119,6 +118,7 @@ inline WindowInfoWrap &WindowInfoWrap::operator=(WindowInfoWrap &&rhs) noexcept
m_isMaxVert = rhs.m_isMaxVert;
m_isMaxHorz = rhs.m_isMaxHorz;
m_isFullscreen = rhs.m_isFullscreen;
m_isShaded = rhs.m_isShaded;
m_isPlasmaDesktop = rhs.m_isPlasmaDesktop;
return *this;
}