]> git.saurik.com Git - wxWidgets.git/commitdiff
fix METRIC_CONVERSION_CONSTANT which got accidentally divided by 10 in r45721
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Sep 2008 16:20:43 +0000 (16:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Sep 2008 16:20:43 +0000 (16:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/math.h

index 3053d11f5645833b2ef259d8a82f81065f125e0b..19518085f17205b549f7e405232c4c25fdfb09b1 100644 (file)
@@ -24,7 +24,7 @@
 
 /* Scaling factors for various unit conversions: 1 inch = 2.54 cm */
 #ifndef METRIC_CONVERSION_CONSTANT
-    #define METRIC_CONVERSION_CONSTANT (1./254)
+    #define METRIC_CONVERSION_CONSTANT (1/25.4)
 #endif
 
 #ifndef mm2inches