diff options
author | Sven Gothel <[email protected]> | 2010-07-16 04:04:37 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-07-16 04:04:37 +0200 |
commit | 8db35dabaef54b96eb90dde02cacebdeacd50126 (patch) | |
tree | 9d7ab9e46d375ca32008aa13341b1ef67638bf59 /src/demos/newt/NEWTTest1.java | |
parent | 348c43a12199e71017767930b0b42d939db47312 (diff) |
Fixes against JOGL a4b16ad544f3f7872f15e52d7ada7dc1e506d333
Diffstat (limited to 'src/demos/newt/NEWTTest1.java')
-rw-r--r-- | src/demos/newt/NEWTTest1.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/demos/newt/NEWTTest1.java b/src/demos/newt/NEWTTest1.java index 1a2f757..bcfff5a 100644 --- a/src/demos/newt/NEWTTest1.java +++ b/src/demos/newt/NEWTTest1.java @@ -16,6 +16,10 @@ public class NEWTTest1 implements WindowListener, KeyListener, MouseListener new NEWTTest1().run(); } + public void windowRepaint(WindowUpdateEvent e) { + System.err.println("windowRepaint "+e); + } + public void windowResized(WindowEvent e) { System.err.println("windowResized "+e); } |