summaryrefslogtreecommitdiffstats
path: root/src/demos/newt/util
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/util
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/util')
-rw-r--r--src/demos/newt/util/TaskToolWM.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/demos/newt/util/TaskToolWM.java b/src/demos/newt/util/TaskToolWM.java
index eade4e6..0f1b180 100644
--- a/src/demos/newt/util/TaskToolWM.java
+++ b/src/demos/newt/util/TaskToolWM.java
@@ -74,18 +74,18 @@ public class TaskToolWM {
}
private static class EventThread implements Runnable {
- Window window;
+ Display display;
- EventThread(Window w) {
- window = w;
+ EventThread(Display d) {
+ display = d;
}
public void run() {
try {
// prolog - lock whatever you need
// do it ..
- if(null!=window) {
- window.pumpMessages();
+ if(null!=display) {
+ display.pumpMessages();
}
} catch (Throwable t) {
// handle errors ..
@@ -101,7 +101,7 @@ public class TaskToolWM {
synchronized(window2Event) {
Runnable evt = (Runnable) window2Event.get(w);
if(null==evt) {
- evt = new EventThread(w);
+ evt = new EventThread(w.getScreen().getDisplay());
window2Event.put(w, evt);
eventMgr.addTask(evt);
res = true;