зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1148479 - Unify string conversion methods in MozAccessible, r=surkov
This commit is contained in:
Родитель
ccb0a2a4b7
Коммит
85f401bf6e
|
@ -540,8 +540,7 @@ struct RoleDescrComparator
|
|||
|
||||
nsAutoString value;
|
||||
mGeckoAccessible->Value(value);
|
||||
return value.IsEmpty() ? nil : [NSString stringWithCharacters:reinterpret_cast<const unichar*>(value.BeginReading())
|
||||
length:value.Length()];
|
||||
return nsCocoaUtils::ToNSString(value);
|
||||
|
||||
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
||||
}
|
||||
|
@ -585,8 +584,7 @@ struct RoleDescrComparator
|
|||
|
||||
nsAutoString helpText;
|
||||
mGeckoAccessible->Help(helpText);
|
||||
return helpText.IsEmpty() ? nil : [NSString stringWithCharacters:reinterpret_cast<const unichar*>(helpText.BeginReading())
|
||||
length:helpText.Length()];
|
||||
return nsCocoaUtils::ToNSString(helpText);
|
||||
|
||||
NS_OBJC_END_TRY_ABORT_BLOCK_NIL;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче