]> git.saurik.com Git - wxWidgets.git/commitdiff
OS/2 VisualAge doesn't know about lower case true and false
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 27 Nov 2000 19:59:25 +0000 (19:59 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 27 Nov 2000 19:59:25 +0000 (19:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/matrix.h

index 0cbeb2ba0d8b4f9691036924b3c14dfd9a05d358..018362a1719afebc404ea8013bce53bf0ada6447 100644 (file)
@@ -122,8 +122,11 @@ public:
     //!code:           | -1     0      0 |
     //!code: matrix' = |  0    -1      0 | x matrix
     //!code:           |  0     0      1 |
+#if defined(__WXPM__)
+    wxTransformMatrix&  Mirror(bool x=TRUE, bool y=FALSE);
+#else
     wxTransformMatrix&  Mirror(bool x=true, bool y=false);
-
+#endif
     // Translate by dx, dy:
     //!ex:
     //!code:           | 1  0 dx |