diff dynamin/gui/events.d @ 27:dfaa3da21b27

Fix stupid mistake with last commit.
author Jordan Miner <jminer7@gmail.com>
date Sat, 25 Jul 2009 15:12:21 -0500
parents 87265a206638
children 545af935f201
line wrap: on
line diff
--- a/dynamin/gui/events.d	Sat Jul 25 15:10:32 2009 -0500
+++ b/dynamin/gui/events.d	Sat Jul 25 15:12:21 2009 -0500
@@ -74,7 +74,7 @@
 	MouseButton button() { return _button; }
 	string toString() {
 		return format("MouseEventArgs [x={}, y={}, button={}]",
-			_x, _y, _button);
+			x, y, _button);
 	}
 }
 ///