backends/wayland: Remove unused attribute
Makes clang complain
This commit is contained in:
parent
70a063a34c
commit
c0d87e0139
2 changed files with 1 additions and 3 deletions
|
@ -43,8 +43,7 @@ using namespace KWayland::Client;
|
||||||
static const int s_refreshRate = 60000; // TODO: can we get refresh rate data from Wayland host?
|
static const int s_refreshRate = 60000; // TODO: can we get refresh rate data from Wayland host?
|
||||||
|
|
||||||
WaylandCursor::WaylandCursor(WaylandBackend *backend)
|
WaylandCursor::WaylandCursor(WaylandBackend *backend)
|
||||||
: m_backend(backend)
|
: m_surface(backend->display()->compositor()->createSurface())
|
||||||
, m_surface(backend->display()->compositor()->createSurface())
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,6 @@ public:
|
||||||
private:
|
private:
|
||||||
void sync();
|
void sync();
|
||||||
|
|
||||||
WaylandBackend *const m_backend;
|
|
||||||
KWayland::Client::Pointer *m_pointer = nullptr;
|
KWayland::Client::Pointer *m_pointer = nullptr;
|
||||||
std::unique_ptr<KWayland::Client::Surface> m_surface;
|
std::unique_ptr<KWayland::Client::Surface> m_surface;
|
||||||
wl_buffer *m_buffer = nullptr;
|
wl_buffer *m_buffer = nullptr;
|
||||||
|
|
Loading…
Reference in a new issue