X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/08bf1d5d9840668ede9c953c6079b8d1db08c8d1..081eb1b120c1bc9147582cff84de756b4a3a63af:/src/common/matrix.cpp diff --git a/src/common/matrix.cpp b/src/common/matrix.cpp index 1785e0a297..a19d8ea477 100644 --- a/src/common/matrix.cpp +++ b/src/common/matrix.cpp @@ -1,4 +1,3 @@ -///////////////////////////////////////////////////////////////////////////// // Name: matrix.cpp // Purpose: wxTransformMatrix class // Author: Chris Breeze, Julian Smart @@ -30,7 +29,9 @@ #include "wx/matrix.h" #include +#if ! (defined(__WXMAC__) && defined(__UNIX__)) const double pi = 3.1415926535; +#endif wxTransformMatrix::wxTransformMatrix(void) { @@ -268,12 +269,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);