Work around a crash in wxD2DContext when using gcc

Don't call GetSize() method as gcc can't handle aggregates returned by value
from D2D libraries currently and the code just crashes if this method is
called.

See #17171.
This commit is contained in:
Vadim Zeitlin
2016-01-30 01:55:15 +01:00
parent 0220d86ef4
commit a7d31701ab
2 changed files with 8 additions and 0 deletions

View File

@@ -189,6 +189,7 @@ wxMSW:
- Make wxListCtrl &c appearance more native on modern systems (Tobias Taschner).
- Don't send wxActivateEvent for minimized windows (bzcdr).
- Return correct OS version under Windows 8.1 and later.
- Fix crash in wxD2DContext when using non-MSVC compiler (iwbnwif).
wxOSX/Cocoa: