From c5867c130e4ff80c8dd641293c31b588c530a882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 12 Dec 2014 08:36:07 +0100 Subject: [PATCH] Fix typos --- src/wayland/autotests/client/test_wayland_subsurface.cpp | 4 ++-- src/wayland/autotests/client/test_wayland_surface.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wayland/autotests/client/test_wayland_subsurface.cpp b/src/wayland/autotests/client/test_wayland_subsurface.cpp index 03ffb50746..23e166073d 100644 --- a/src/wayland/autotests/client/test_wayland_subsurface.cpp +++ b/src/wayland/autotests/client/test_wayland_subsurface.cpp @@ -346,7 +346,7 @@ void TestSubSurface::testPlaceAbove() // so far the stacking order should still be empty QVERIFY(serverSubSurface1->parentSurface()->childSubSurfaces().isEmpty()); - // commiting the parent should create the stacking order + // committing the parent should create the stacking order parent->commit(Surface::CommitFlag::None); // ensure it's processed on server side wl_display_flush(m_connection->display()); @@ -446,7 +446,7 @@ void TestSubSurface::testPlaceBelow() // so far the stacking order should still be empty QVERIFY(serverSubSurface1->parentSurface()->childSubSurfaces().isEmpty()); - // commiting the parent should create the stacking order + // committing the parent should create the stacking order parent->commit(Surface::CommitFlag::None); // ensure it's processed on server side wl_display_flush(m_connection->display()); diff --git a/src/wayland/autotests/client/test_wayland_surface.cpp b/src/wayland/autotests/client/test_wayland_surface.cpp index 61bb6cb4c1..cea3de5d90 100644 --- a/src/wayland/autotests/client/test_wayland_surface.cpp +++ b/src/wayland/autotests/client/test_wayland_surface.cpp @@ -508,7 +508,7 @@ void TestWaylandSurface::testOpaque() // let's install an opaque region s->setOpaqueRegion(m_compositor->createRegion(QRegion(0, 10, 20, 30)).get()); - // the region should only be applied after the surface got commited + // the region should only be applied after the surface got committed wl_display_flush(m_connection->display()); QCoreApplication::processEvents(); QCOMPARE(serverSurface->opaque(), QRegion()); @@ -564,7 +564,7 @@ void TestWaylandSurface::testInput() // let's install an input region s->setInputRegion(m_compositor->createRegion(QRegion(0, 10, 20, 30)).get()); - // the region should only be applied after the surface got commited + // the region should only be applied after the surface got committed wl_display_flush(m_connection->display()); QCoreApplication::processEvents(); QCOMPARE(serverSurface->input(), QRegion());