From 2cbae6efc861fc7af22f26c2668ed1ac383e6c79 Mon Sep 17 00:00:00 2001 From: kappa1 Date: Sun, 10 Jul 2011 00:31:16 +0000 Subject: [PATCH] minor update to comments and add missing JavaDoc --- src/java/org/lwjgl/opengl/LinuxDisplay.java | 4 ++-- src/java/org/lwjgl/util/applet/AppletLoader.java | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/java/org/lwjgl/opengl/LinuxDisplay.java b/src/java/org/lwjgl/opengl/LinuxDisplay.java index f9b345f2..c26c3e5c 100644 --- a/src/java/org/lwjgl/opengl/LinuxDisplay.java +++ b/src/java/org/lwjgl/opengl/LinuxDisplay.java @@ -956,8 +956,8 @@ final class LinuxDisplay implements DisplayImplementation { * in xembed mode. Every xembed embedder window has a focus proxy * window that recieves all the input. This method will test whether * the provided window handle is the focus proxy, if so it will get its - * parent window and then test whether this is indeed the window that - * belongs to our current_window. If so then parent window is active. + * parent window and then test whether this is an ancestor to our + * current_window. If so then parent window is active. * * @param window - the window handle to test */ diff --git a/src/java/org/lwjgl/util/applet/AppletLoader.java b/src/java/org/lwjgl/util/applet/AppletLoader.java index 52234e54..18653e2e 100644 --- a/src/java/org/lwjgl/util/applet/AppletLoader.java +++ b/src/java/org/lwjgl/util/applet/AppletLoader.java @@ -120,6 +120,9 @@ import java.util.zip.ZipFile; *
  • al_windows32 - [String] If specifed it will be used instead of al_windows on 32bit windows systems.
  • *
  • al_linux64 - [String] If specifed it will be used instead of al_linux on 64bit linux systems.
  • *
  • al_linux32 - [String] If specifed it will be used instead of al_linux on 32bit linux systems.
  • + *
  • al_mac32 - [String] If specifed it will be used instead of al_mac on 64bit mac systems.
  • + *
  • al_mac64 - [String] If specifed it will be used instead of al_mac on 32bit mac systems.
  • + *
  • al_macppc - [String] If specifed it will be used instead of al_mac on PPC mac systems.
  • *

    *

  • boxbgcolor - [String] any String AWT color ("red", "blue", etc), RGB (0-255) or hex formated color (#RRGGBB) to use as background. Default: #ffffff.
  • *
  • boxfgcolor - [String] any String AWT color ("red", "blue", etc), RGB (0-255) or hex formated color (#RRGGBB) to use as foreground. Default: #000000.