Bug 1890924 - Avoid the proxy variable being found unused on Windows . r=Jamie

Differential Revision: https://phabricator.services.mozilla.com/D207235
This commit is contained in:
Mike Hommey 2024-04-11 06:36:20 +00:00
Родитель 98a54cbdc5
Коммит 7c5cdb53a9
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -636,7 +636,8 @@ xpcAccessible::ScrollToPoint(uint32_t aCoordinateType, int32_t aX, int32_t aY) {
NS_IMETHODIMP
xpcAccessible::Announce(const nsAString& aAnnouncement, uint16_t aPriority) {
if (RemoteAccessible* proxy = IntlGeneric()->AsRemote()) {
RemoteAccessible* proxy = IntlGeneric()->AsRemote();
if (proxy) {
#if defined(XP_WIN)
return NS_ERROR_NOT_IMPLEMENTED;
#else