diff options
author | Sven Gothel <[email protected]> | 2011-08-30 15:42:59 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-30 15:42:59 +0200 |
commit | cb4e73183103c13d8bcf7c7667e1b9ea181e1f5f (patch) | |
tree | a619599d31250bb06a0297795778897f07c1edc6 /src/newt/classes/com | |
parent | 6ed38932604db50b5e62d5ee6e2d0385810bb67c (diff) |
NEWT Window/WindowImpl: Add generics - addChild()/removeChild() return boolean, see Collection::add/remove
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/Window.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/com/jogamp/newt/Window.java b/src/newt/classes/com/jogamp/newt/Window.java index 5b3d93eec..a76862055 100644 --- a/src/newt/classes/com/jogamp/newt/Window.java +++ b/src/newt/classes/com/jogamp/newt/Window.java @@ -147,9 +147,9 @@ public interface Window extends NativeWindow, WindowClosingProtocol { // Child Window Management // - void addChild(NativeWindow win); + boolean addChild(NativeWindow win); - void removeChild(NativeWindow win); + boolean removeChild(NativeWindow win); // // Modes / States |