aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/swing
diff options
context:
space:
mode:
Diffstat (limited to 'gl4java/swing')
-rw-r--r--gl4java/swing/GLAnimJPanel.java4
-rw-r--r--gl4java/swing/GLJPanel.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/gl4java/swing/GLAnimJPanel.java b/gl4java/swing/GLAnimJPanel.java
index bdbdd94..3bd8ebf 100644
--- a/gl4java/swing/GLAnimJPanel.java
+++ b/gl4java/swing/GLAnimJPanel.java
@@ -27,7 +27,7 @@ import java.lang.Math;
*
* <p>
* There are two ways of using a GLAnimJPanel: the {@link
- * gl4java.GLEventListener} model or the subclassing model. Earlier
+ * gl4java.drawable.GLEventListener} model or the subclassing model. Earlier
* versions of the system only supported the subclassing model. The
* default implementations of {@link #init}, {@link #display},
* {@link #reshape} and {@link #doCleanup}
@@ -154,7 +154,7 @@ public class GLAnimJPanel extends GLJPanel
protected boolean threadSuspended = false;
static {
- if(GLContext.loadNativeLibraries(null, null, null)==false)
+ if(GLContext.doLoadNativeLibraries(null, null, null)==false)
System.out.println("GLAnimJPanel could not load def. native libs.");
}
diff --git a/gl4java/swing/GLJPanel.java b/gl4java/swing/GLJPanel.java
index bc385c6..d13cc89 100644
--- a/gl4java/swing/GLJPanel.java
+++ b/gl4java/swing/GLJPanel.java
@@ -26,7 +26,7 @@ import javax.swing.*;
* <p>
*
* There are two ways of using a GLJPanel: the {@link
- * gl4java.GLEventListener} model or the subclassing model. Earlier
+ * gl4java.drawable.GLEventListener} model or the subclassing model. Earlier
* versions of the system only supported the subclassing model. The
* default implementations of {@link #init}, {@link #display},
* {@link #reshape} and {@link #doCleanup}
@@ -657,7 +657,7 @@ public class GLJPanel extends JPanel
*
* <p>
* The default implementation of display() sends display events to
- * all {@link gl4java.GLEventListener}s associated with this
+ * all {@link gl4java.drawable.GLEventListener}s associated with this
* GLJPanel, and automatically calls {@link
* gl4java.GLContext#gljMakeCurrent} and {@link
* gl4java.GLContext#gljFree} as necessary.