diff options
author | Sven Gothel <[email protected]> | 2015-10-10 03:08:14 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-10-10 03:08:14 +0200 |
commit | e794fc40ba723f2fca4ac892e873975fb393e007 (patch) | |
tree | 6f18d9e88fc8f1c8a235576c81d5d0881032da7f | |
parent | c61fa44d9a2e2049fec7833990f7bb699545bd15 (diff) |
WindowImpl.quirks: Access default -> protected, also fix API doc comment.v2.3.2
-rw-r--r-- | src/newt/classes/jogamp/newt/WindowImpl.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java index ab2cf97c6..88f9e07b9 100644 --- a/src/newt/classes/jogamp/newt/WindowImpl.java +++ b/src/newt/classes/jogamp/newt/WindowImpl.java @@ -196,9 +196,9 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer * i.e. {@code fast=true}. * </p> */ - static final int QUIRK_BIT_VISIBILITY = 0; - /** Regular state mask */ - /* pp */ static final Bitfield quirks = Bitfield.Factory.synchronize(Bitfield.Factory.create(32)); + protected static final int QUIRK_BIT_VISIBILITY = 0; + /** Quirk mask */ + protected static final Bitfield quirks = Bitfield.Factory.synchronize(Bitfield.Factory.create(32)); // // State Mask |