зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1734517: static_cast from DocAccessible* to DocAccessibleWrap* instead of reinterpret_cast. r=eeejay
Differential Revision: https://phabricator.services.mozilla.com/D127762
This commit is contained in:
Родитель
490b5ed046
Коммит
cccfd3eb4e
|
@ -52,7 +52,7 @@ AccessibleWrap* DocAccessibleWrap::GetAccessibleByID(int32_t aID) const {
|
|||
|
||||
// If the ID is not in the hash table, check the IDs of the child docs.
|
||||
for (uint32_t i = 0; i < ChildDocumentCount(); i++) {
|
||||
auto childDoc = reinterpret_cast<AccessibleWrap*>(GetChildDocumentAt(i));
|
||||
auto childDoc = static_cast<AccessibleWrap*>(GetChildDocumentAt(i));
|
||||
if (childDoc->VirtualViewID() == aID) {
|
||||
return childDoc;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче