Fix unused variable warnings

master
Vlad Zahorodnii 2020-09-10 10:10:31 +03:00
parent eafe23b27c
commit 5a0a86c358
2 changed files with 2 additions and 1 deletions

View File

@ -237,6 +237,7 @@ MockInputMethod::~MockInputMethod()
void MockInputMethod::zwp_input_method_v1_activate(struct ::zwp_input_method_context_v1 *context)
{
Q_UNUSED(context)
if (!m_inputSurface) {
m_inputSurface = Test::createSurface();
m_inputMethodSurface = Test::createInputPanelSurfaceV1(m_inputSurface, s_waylandConnection.outputs.first());

View File

@ -246,7 +246,7 @@ EffectsHandlerImpl::EffectsHandlerImpl(Compositor *compositor, Scene *scene)
for (InternalClient *client : ws->internalClients()) {
setupClientConnections(client);
}
if (auto w = waylandServer()) {
if (waylandServer()) {
const auto clients = waylandServer()->clients();
for (AbstractClient *c : clients) {
if (c->readyForPainting()) {