Bug 1645904 - Fix swapped parameters for nsIAccessibleVirtualCursorChangeEvent r=eeejay

The fields are unused, but there's no reason to propagate them
incorrectly.

Differential Revision: https://phabricator.services.mozilla.com/D134907
This commit is contained in:
Neia Finch 2022-07-21 16:59:49 +00:00
Родитель f3cd181291
Коммит 034d8039a6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -549,7 +549,7 @@ mozilla::ipc::IPCResult DocAccessibleParent::RecvVirtualCursorChangeEvent(
GetXPCAccessible(target), doc, nullptr, aFromUser,
GetXPCAccessible(oldPosition), aOldStartOffset, aOldEndOffset,
GetXPCAccessible(newPosition), aNewStartOffset, aNewEndOffset,
aBoundaryType, aReason);
aReason, aBoundaryType);
nsCoreUtils::DispatchAccEvent(std::move(event));
return IPC_OK();