summaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/classes/com/jogamp/newt/opengl/GLWindow.java8
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);
}
//----------------------------------------------------------------------