Revision: 4069
          http://vexi.svn.sourceforge.net/vexi/?rev=4069&view=rev
Author:   clrg
Date:     2011-03-24 04:05:56 +0000 (Thu, 24 Mar 2011)

Log Message:
-----------
Fix incorrect getters for mousex/y (oops!)

Modified Paths:
--------------
    trunk/org.vexi-core.main/src/main/java/org/vexi/core/Surface.java

Modified: trunk/org.vexi-core.main/src/main/java/org/vexi/core/Surface.java
===================================================================
--- trunk/org.vexi-core.main/src/main/java/org/vexi/core/Surface.java   
2011-03-24 03:36:53 UTC (rev 4068)
+++ trunk/org.vexi-core.main/src/main/java/org/vexi/core/Surface.java   
2011-03-24 04:05:56 UTC (rev 4069)
@@ -110,8 +110,8 @@
     private boolean resizable = false;                       ///< whether a 
user may resize this surface
     private boolean mouseUpdateRequired = false;             ///< reflow 
requests refresh of cursor
     
-    protected int getMouseX() { return x; }
-    protected int getMouseY() { return y; }
+    protected int getMouseX() { return mousex; }
+    protected int getMouseY() { return mousey; }
 
     final private DirtyList dirtyRegions = new DirtyList();  ///< Dirty 
regions on the surface
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software 
be a part of the solution? Download the Intel(R) Manageability Checker 
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to