summaryrefslogtreecommitdiffstats
path: root/src/demos/newt/NEWTTest1.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-12-23 07:15:40 +0100
committerSven Gothel <[email protected]>2010-12-23 07:15:40 +0100
commite35038cc3c01b6ad8beb559986102c68fde614b6 (patch)
treeeba219736825127a241ac6ef16659f61b32ebe02 /src/demos/newt/NEWTTest1.java
parent3f92d13a9f886b044f8f1c49ff22476e30ba408d (diff)
Add NEWT WindowListener.windowDestroyed() e7778124162aef7004e040dded5de1eaf5e1ece4
Diffstat (limited to 'src/demos/newt/NEWTTest1.java')
-rw-r--r--src/demos/newt/NEWTTest1.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/demos/newt/NEWTTest1.java b/src/demos/newt/NEWTTest1.java
index 23bc914..3bcd260 100644
--- a/src/demos/newt/NEWTTest1.java
+++ b/src/demos/newt/NEWTTest1.java
@@ -37,6 +37,9 @@ public class NEWTTest1 implements WindowListener, KeyListener, MouseListener
// stop running ..
running = false;
}
+ public void windowDestroyed(WindowEvent e) {
+ System.err.println("windowDestroyed "+e);
+ }
boolean running = true;
public void keyPressed(KeyEvent e) {