From ac9fd4f7dd7f845af6b5eafaa7869cadbd47de2f Mon Sep 17 00:00:00 2001 From: Brian Matzon Date: Wed, 28 Jan 2004 19:44:26 +0000 Subject: [PATCH] using proper static access --- src/java/org/lwjgl/opengl/glu/Quadric.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/lwjgl/opengl/glu/Quadric.java b/src/java/org/lwjgl/opengl/glu/Quadric.java index a925420d..55c80a4a 100644 --- a/src/java/org/lwjgl/opengl/glu/Quadric.java +++ b/src/java/org/lwjgl/opengl/glu/Quadric.java @@ -22,10 +22,10 @@ public class Quadric implements GLUConstants { public Quadric() { super(); - drawStyle = this.GLU_FILL; - orientation = this.GLU_OUTSIDE; + drawStyle = GLUConstants.GLU_FILL; + orientation = GLUConstants.GLU_OUTSIDE; textureFlag = false; - normals = this.GLU_SMOOTH; + normals = GLUConstants.GLU_SMOOTH; } /**