Skip to content

Commit 0d30eb4

Browse files
committedNov 20, 2019
8233707: systemScale.cpp could not compile with VS2019
Reviewed-by: serb, aivanov
1 parent 877e269 commit 0d30eb4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/java.desktop/windows/native/common/awt/systemscale/systemScale.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -93,7 +93,10 @@ void GetScreenDpi(HMONITOR hmon, float *dpiX, float *dpiY)
9393
__uuidof(ID2D1Factory), NULL,
9494
&m_pDirect2dFactory);
9595
if (res == S_OK) {
96+
#pragma warning(push)
97+
#pragma warning(disable : 4996) // GetDesktopDpi is deprecated.
9698
m_pDirect2dFactory->GetDesktopDpi(dpiX, dpiY);
99+
#pragma warning(pop)
97100
m_pDirect2dFactory->Release();
98101
}
99102
}

0 commit comments

Comments
 (0)
Please sign in to comment.