From be7995cb57c4ffa1ea71f8fc292fc0b3df5de212 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 30 Aug 2011 15:50:01 +0200 Subject: Complete commit cb4e73183103c13d8bcf7c7667e1b9ea181e1f5f (sorry) --- src/newt/classes/com/jogamp/newt/opengl/GLWindow.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/newt/classes/com') diff --git a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java index e0776f58d..559130298 100644 --- a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java +++ b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java @@ -268,12 +268,12 @@ public class GLWindow implements GLAutoDrawable, Window, NEWTEventConsumer, FPSC return window.reparentWindow(newParent, forceDestroyCreate); } - public final void removeChild(NativeWindow win) { - window.removeChild(win); + public final boolean removeChild(NativeWindow win) { + return window.removeChild(win); } - public final void addChild(NativeWindow win) { - window.addChild(win); + public final boolean addChild(NativeWindow win) { + return window.addChild(win); } //---------------------------------------------------------------------- -- cgit v1.2.3