]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/matrix.cpp
implemented radio menu items for wxMSW
[wxWidgets.git] / src / common / matrix.cpp
index 1785e0a2972a8473a102ca2d1412ff70c571419a..7a78af94b4a3a53801727a2e023ea2e34da8060c 100644 (file)
@@ -1,4 +1,3 @@
-/////////////////////////////////////////////////////////////////////////////
 // Name:        matrix.cpp
 // Purpose:     wxTransformMatrix class
 // Author:      Chris Breeze, Julian Smart
@@ -30,7 +29,7 @@
 #include "wx/matrix.h"
 #include <math.h>
 
-const double pi = 3.1415926535;
+static const double pi = 3.1415926535;
 
 wxTransformMatrix::wxTransformMatrix(void)
 {
@@ -268,12 +267,12 @@ wxTransformMatrix&  wxTransformMatrix::Mirror(bool x, bool y)
     if (x)
     {
         temp.m_matrix[1][1] = -1;
-        temp.m_isIdentity=false;
+        temp.m_isIdentity=FALSE;
     }
     if (y)
     {
         temp.m_matrix[0][0] = -1;
-        temp.m_isIdentity=false;
+        temp.m_isIdentity=FALSE;
     }
 
     *this = temp * (*this);