aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-03-16 01:36:59 +0100
committerSven Gothel <[email protected]>2014-03-16 01:36:59 +0100
commitf0bb162ab18cb39e6b8e07649aa826fbe84c6950 (patch)
tree63ad91d5dc93393abe8879cc7e8c8b27b09efadc /src/newt/classes/jogamp
parent101567f5f16d91a13c8067764d5e14eefb2b9936 (diff)
NEWT: Minor edits
Diffstat (limited to 'src/newt/classes/jogamp')
-rw-r--r--src/newt/classes/jogamp/newt/WindowImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java
index 9593d4faa..d3f835e58 100644
--- a/src/newt/classes/jogamp/newt/WindowImpl.java
+++ b/src/newt/classes/jogamp/newt/WindowImpl.java
@@ -3250,7 +3250,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
private final void dispatchMouseEvent(MouseEvent e) {
for(int i = 0; !e.isConsumed() && i < mouseListeners.size(); i++ ) {
- MouseListener l = mouseListeners.get(i);
+ final MouseListener l = mouseListeners.get(i);
switch(e.getEventType()) {
case MouseEvent.EVENT_MOUSE_CLICKED:
l.mouseClicked(e);