diff qt/d2/qt/core/QPoint.d @ 205:3dadfee97421

D2 fixes
author eldar
date Mon, 13 Jul 2009 23:35:23 +0000
parents 7dd099050621
children 7664de4a55e5
line wrap: on
line diff
--- a/qt/d2/qt/core/QPoint.d	Mon Jul 13 23:16:08 2009 +0000
+++ b/qt/d2/qt/core/QPoint.d	Mon Jul 13 23:35:23 2009 +0000
@@ -23,10 +23,10 @@
     bool isNull() // const
     { return xp == 0 && yp == 0; }
 
-    int x() // const
+    int x() const
     { return xp; }
 
-    int y() // const
+    int y() const
     { return yp; }
 
     void x(int xpos)