1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

HWNDComponentPeer: Fix icon leaks

Co-authored-by: ValentynPavliuchenkoA <valentyn.pavliuchenko@avid.com>
This commit is contained in:
reuk 2022-10-06 17:47:19 +01:00
parent d8301ddc1c
commit 59a47a4638
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
2 changed files with 39 additions and 37 deletions

View file

@ -42,7 +42,7 @@ WinRTWrapper::WinRTWrapper()
return;
HRESULT status = roInitialize (1);
initialised = ! (status != S_OK && status != S_FALSE && status != 0x80010106L);
initialised = ! (status != S_OK && status != S_FALSE && status != (HRESULT) 0x80010106L);
}
WinRTWrapper::~WinRTWrapper()