summary refs log tree commit diff stats
path: root/compiler/c2nim/tests/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/c2nim/tests/matrix.h')
-rw-r--r--compiler/c2nim/tests/matrix.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/c2nim/tests/matrix.h b/compiler/c2nim/tests/matrix.h
index 248b3d5e8..715e9e43b 100644
--- a/compiler/c2nim/tests/matrix.h
+++ b/compiler/c2nim/tests/matrix.h
@@ -55,7 +55,7 @@ public:
 

     void operator = (const wxTransformMatrix& mat);

     bool operator == (const wxTransformMatrix& mat) const;

-    bool operator != (const wxTransformMatrix& mat) const;

+    bool operator != (const module::gah::wxTransformMatrix& mat) const;

 

     //multiply every element by t

     wxTransformMatrix&          operator*=(const double& t);

@@ -184,7 +184,7 @@ public:
 Chris Breeze reported, that

 some functions of wxTransformMatrix cannot work because it is not

 known if he matrix has been inverted. Be careful when using it.

-

+*/

 

 // Transform X value from logical to device

 // warning: this function can only be used for this purpose

@@ -235,7 +235,6 @@ inline bool wxTransformMatrix::IsIdentity1(void) const
 inline double wxCalculateDet(double a11, double a21, double a12, double a22)

 {

     return a11 * a22 - a12 * a21;

-}

-*/
+}
 

 #endif // _WX_MATRIXH__