- 
    Bug 
- 
    Resolution: Duplicate
- 
     P2 P2
- 
    9
- 
    None
- 
        windows
                    I know that VS2010 isn't Oracle's default compiler for Windows, but others like SAP are still using it. The fix for JDK-8175293 introduced a struct assignment which is not supported by VS2010:
prevScaleRec = { -1, -1, -1 };
The fix is rather trivial and would keep the JDK9 sources buildable with VS2010:
prevScaleRec.scaleX = prevScaleRec.scaleY = prevScaleRec.screen = -1;
            
prevScaleRec = { -1, -1, -1 };
The fix is rather trivial and would keep the JDK9 sources buildable with VS2010:
prevScaleRec.scaleX = prevScaleRec.scaleY = prevScaleRec.screen = -1;
- duplicates
- 
                    JDK-8177137 8175293 breaks Windows build on VS 2010 -           
- Resolved
 
-         
- relates to
- 
                    JDK-8175293 Window size is not updated after setting location to display with different DPI -           
- Resolved
 
-