diff options
author | Sven Gothel <[email protected]> | 2008-06-24 21:28:28 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-06-24 21:28:28 +0000 |
commit | a4b14925244f4619fe1a3f7b2023157d1d5a21cf (patch) | |
tree | 1beda9e83d11ea751f491081997fe3099a64b10d /src/classes/com/sun/opengl/impl/x11 | |
parent | e75d23db2a62336d57c307a53efe8dcf56451798 (diff) |
JAWT package cleanup ..
re adding accidently removed files
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1675 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/x11')
-rw-r--r-- | src/classes/com/sun/opengl/impl/x11/glx/awt/X11AWTGLXDrawableFactory.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/classes/com/sun/opengl/impl/x11/glx/awt/X11AWTGLXDrawableFactory.java b/src/classes/com/sun/opengl/impl/x11/glx/awt/X11AWTGLXDrawableFactory.java index 1b82e67ec..d969f18aa 100644 --- a/src/classes/com/sun/opengl/impl/x11/glx/awt/X11AWTGLXDrawableFactory.java +++ b/src/classes/com/sun/opengl/impl/x11/glx/awt/X11AWTGLXDrawableFactory.java @@ -38,9 +38,9 @@ package com.sun.opengl.impl.x11.glx.awt; import com.sun.opengl.impl.*; import com.sun.opengl.impl.x11.*; -import com.sun.opengl.impl.x11.awt.*; import com.sun.opengl.impl.x11.glx.*; -import com.sun.opengl.impl.awt.*; +import com.sun.opengl.impl.jawt.*; +import com.sun.opengl.impl.jawt.x11.*; import java.awt.Graphics; import java.awt.GraphicsConfiguration; import java.awt.GraphicsDevice; @@ -171,11 +171,11 @@ public class X11AWTGLXDrawableFactory extends X11GLXDrawableFactory { } public void lockToolkit() { - AWTUtil.lockToolkit(); + JAWTUtil.lockToolkit(); } public void unlockToolkit() { - AWTUtil.unlockToolkit(); + JAWTUtil.unlockToolkit(); } } |