From 84cd1236dbfc44dd18cf377589e56990a192f63b Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 12 Sep 2009 12:33:51 -0700 Subject: Fix for NEWT Changes: GLWindow: remove ambigous create functions, ie with Window and Capabilities arguments --- src/demos/es2/RedSquare.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/demos/es2/RedSquare.java') diff --git a/src/demos/es2/RedSquare.java b/src/demos/es2/RedSquare.java index da4505c..6996eed 100755 --- a/src/demos/es2/RedSquare.java +++ b/src/demos/es2/RedSquare.java @@ -97,8 +97,10 @@ public class RedSquare extends Thread implements WindowListener, KeyListener, Mo Display nDisplay = NewtFactory.createDisplay(NativeWindowFactory.TYPE_AWT, null); // local display Screen nScreen = NewtFactory.createScreen(NativeWindowFactory.TYPE_AWT, nDisplay, 0); // screen 0 nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps); + window = GLWindow.create(nWindow); + } else { + window = GLWindow.create(caps); } - window = GLWindow.create(nWindow, caps); window.addWindowListener(this); window.addMouseListener(this); -- cgit v1.2.3