X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7cfebe05f03443c6f91197f93cd2749270df6666..418b74a078f6502deff7ad4a4d562b9cc496774d:/src/mac/utils.cpp

diff --git a/src/mac/utils.cpp b/src/mac/utils.cpp
index 9c4bc2c8ce..1d0252c810 100644
--- a/src/mac/utils.cpp
+++ b/src/mac/utils.cpp
@@ -466,10 +466,11 @@ void wxDisplaySize(int *width, int *height)
 
 void wxDisplaySizeMM(int *width, int *height)
 {
-   wxDisplaySize(width, height);
-   // on mac 72 is fixed (at least now ;-)
-   *width *= 25.4 / 72 ;
-   *height *= 25.4 / 72 ;
+    wxDisplaySize(width, height);
+    // on mac 72 is fixed (at least now ;-)
+    float cvPt2Mm = 25.4 / 72;
+    *width = int( *width * cvPt2Mm );
+    *height = int( *height * cvPt2Mm );
 }
 
 void wxClientDisplayRect(int *x, int *y, int *width, int *height)