Fix minor EBN issues

This commit is contained in:
Yuri Chornoivan 2018-09-06 22:24:21 +03:00
parent a160143d57
commit 94b5140b53
3 changed files with 4 additions and 4 deletions

View file

@ -537,7 +537,7 @@ void TestWaylandOutputManagement::testScale()
//will be setApplied using the connect above
QCOMPARE(output->scale(), 3);
QCOMPARE(output->scaleF(), 3.0); //test fowards compatibility
QCOMPARE(output->scaleF(), 3.0); //test forward compatibility
}

View file

@ -2183,7 +2183,7 @@ void TestWaylandSeat::testTouch()
QCOMPARE(unboundSpy.count(), 1);
QCOMPARE(destroyedSpy.count(), 0);
QVERIFY(!serverTouch->resource());
// try to call into all the the methods of the touch interface, should not crash
// try to call into all the methods of the touch interface, should not crash
QCOMPARE(m_seatInterface->focusedTouch(), serverTouch);
m_seatInterface->setTimestamp(8);
QCOMPARE(m_seatInterface->touchDown(QPointF(15, 26)), 0);

View file

@ -329,8 +329,8 @@ public:
*
* The Client processes this event together with the commit string
*
* @param beforeLength length of text before current cursor positon.
* @param afterLength length of text after current cursor positon.
* @param beforeLength length of text before current cursor position.
* @param afterLength length of text after current cursor position.
* @see commit
**/
void deleteSurroundingText(quint32 beforeLength, quint32 afterLength);