summaryrefslogtreecommitdiffstats
path: root/src/demos/newt/TaskManagerTest1.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-06-18 00:16:14 +0000
committerSven Gothel <[email protected]>2009-06-18 00:16:14 +0000
commit779c2a9925c03c8d832aeb68a652d40dedab5ab0 (patch)
treeda2cfbbeec2c9848316cd449b22fa671db47bb2e /src/demos/newt/TaskManagerTest1.java
parent42a3da77136f0f39679f022b9c7e243464025539 (diff)
Fix pumpMessages() in NEWT demos
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@355 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/newt/TaskManagerTest1.java')
-rw-r--r--src/demos/newt/TaskManagerTest1.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/demos/newt/TaskManagerTest1.java b/src/demos/newt/TaskManagerTest1.java
index d2b7e98..6044cb7 100644
--- a/src/demos/newt/TaskManagerTest1.java
+++ b/src/demos/newt/TaskManagerTest1.java
@@ -26,6 +26,7 @@ public class TaskManagerTest1 implements WindowListener, KeyListener, MouseList
}
Window window;
+ Display display;
public void windowResized(WindowEvent e) {
System.err.println("windowResized "+e);
@@ -91,8 +92,8 @@ public class TaskManagerTest1 implements WindowListener, KeyListener, MouseList
// prolog - lock whatever you need
// do it ..
- if(null!=window) {
- window.pumpMessages();
+ if(null!=display) {
+ display.pumpMessages();
}
} catch (Throwable t) {
// handle errors ..
@@ -136,7 +137,7 @@ public class TaskManagerTest1 implements WindowListener, KeyListener, MouseList
caps.setBlueBits(8);
//caps.setBackgroundOpaque(true);
- Display display = NewtFactory.createDisplay(null);
+ display = NewtFactory.createDisplay(null);
Screen screen = NewtFactory.createScreen(display, 0);
window = NewtFactory.createWindow(screen, caps);
window.setTitle("GlassPrism");