aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes/com
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-08-05 12:35:10 +0300
committerRami Santina <[email protected]>2011-08-05 12:35:10 +0300
commit94d9bcebaa382c87cb4baa6be4b85c8789a140dd (patch)
treebbc32ccbeb3ce7c726c3655ac9efaf20e0e1c708 /src/newt/classes/com
parentf0e35817ba6a9f9fdc38811de6b29ed1b2eacbbc (diff)
Fix: event mapping mismatch
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r--src/newt/classes/com/jogamp/newt/event/MouseEvent.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
index be763b48d..62a8941d7 100644
--- a/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
+++ b/src/newt/classes/com/jogamp/newt/event/MouseEvent.java
@@ -83,10 +83,6 @@ public class MouseEvent extends InputEvent
return x.length;
}
- public int getPointerId() {
- return pointerids[0];
- }
-
/**
* @return the pointer id for the data at index.
* return -1 if index not available.
@@ -100,6 +96,7 @@ public class MouseEvent extends InputEvent
public int getButton() {
return button;
}
+
public int getClickCount() {
return clickCount;
}