Fix new unused variable warning

This commit is contained in:
Martin Flöser 2017-10-16 17:17:15 +02:00
parent 7ef8409157
commit 6b8943bddd

View file

@ -161,7 +161,7 @@ void WaylandServer::createSurface(T *surface)
} }
//not directly connected as the connection is tied to client instead of this //not directly connected as the connection is tied to client instead of this
connect(m_XdgForeign, &KWayland::Server::XdgForeignInterface::transientChanged, client, [this](KWayland::Server::SurfaceInterface *child, KWayland::Server::SurfaceInterface *parent) { connect(m_XdgForeign, &KWayland::Server::XdgForeignInterface::transientChanged, client, [this](KWayland::Server::SurfaceInterface *child) {
emit foreignTransientChanged(child); emit foreignTransientChanged(child);
}); });
} }