diff options
author | Sven Gothel <[email protected]> | 2011-08-30 15:50:01 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-30 15:50:01 +0200 |
commit | be7995cb57c4ffa1ea71f8fc292fc0b3df5de212 (patch) | |
tree | a9b59428be4c99cafc067ac8f02155e11e443a0b /src | |
parent | cb4e73183103c13d8bcf7c7667e1b9ea181e1f5f (diff) |
Complete commit cb4e73183103c13d8bcf7c7667e1b9ea181e1f5f (sorry)
Diffstat (limited to 'src')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/opengl/GLWindow.java | 8 |
1 files changed, 4 insertions, 4 deletions
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); } //---------------------------------------------------------------------- |