AtSpiAdaptor: Fix QAccessible::TextUpdated notification
Change-Id: I47e445d085b130121fe44eb2d4afc830de3b884b Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>bb10
parent
4f45dc762d
commit
a54a48e5b8
|
|
@ -958,7 +958,7 @@ void AtSpiAdaptor::notify(QAccessibleEvent *event)
|
|||
textRemoved = textEvent->textRemoved();
|
||||
changePosition = textEvent->changePosition();
|
||||
cursorPosition = textEvent->cursorPosition();
|
||||
} else if (event->type() == QAccessible::TextInserted) {
|
||||
} else if (event->type() == QAccessible::TextUpdated) {
|
||||
QAccessibleTextUpdateEvent *textEvent = static_cast<QAccessibleTextUpdateEvent*>(event);
|
||||
textInserted = textEvent->textInserted();
|
||||
textRemoved = textEvent->textRemoved();
|
||||
|
|
|
|||
Loading…
Reference in New Issue