From de2bbe844b8ddc6248ddd96503f20b7525cf8104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 8 May 2011 15:51:01 +0100 Subject: [PATCH] Use getters rather than beans. --- src/tool/ToolEvent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool/ToolEvent.js b/src/tool/ToolEvent.js index 35190719..b68b1fec 100644 --- a/src/tool/ToolEvent.js +++ b/src/tool/ToolEvent.js @@ -194,8 +194,8 @@ var ToolEvent = this.ToolEvent = Base.extend({ toString: function() { return '{ type: ' + this.type - + ', point: ' + this.point - + ', count: ' + this.count + + ', point: ' + this.getPoint() + + ', count: ' + this.getCount() + ', modifiers: ' + this.getModifiers() + ' }'; }