2006-06-09 Thomas Fitzsimmons <fitzsim@redhat.com>
* gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java (getDefaultScreenDevice): Remove unnecessary GCJ local hack. * gnu/java/awt/peer/gtk/GtkToolkit.java (getSystemEventQueueImpl): Likewise. * gnu/java/awt/peer/gtk/GdkPixbufDecoder.java (registerFormat): Likewise. From-SVN: r114521
This commit is contained in:
parent
cd75853e1d
commit
1bc49a5eea
@ -1,3 +1,12 @@
|
||||
2006-06-09 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||
|
||||
* gnu/java/awt/peer/gtk/GdkGraphicsEnvironment.java
|
||||
(getDefaultScreenDevice): Remove unnecessary GCJ local hack.
|
||||
* gnu/java/awt/peer/gtk/GtkToolkit.java (getSystemEventQueueImpl):
|
||||
Likewise.
|
||||
* gnu/java/awt/peer/gtk/GdkPixbufDecoder.java (registerFormat):
|
||||
Likewise.
|
||||
|
||||
2006-06-09 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||
|
||||
* java/lang/String.java, classpath/native/jni/classpath/jcl.h,
|
||||
|
@ -88,22 +88,13 @@ public class GdkGraphicsEnvironment extends GraphicsEnvironment
|
||||
if (GraphicsEnvironment.isHeadless ())
|
||||
throw new HeadlessException ();
|
||||
|
||||
// GCJ LOCAL: workaround a GCJ problem accessing
|
||||
// GdkGraphicsEnvironment.class
|
||||
try
|
||||
{
|
||||
synchronized (Class.forName ("gnu.java.awt.peer.gtk.GdkGraphicsEnvironment"))
|
||||
synchronized (GdkGraphicsEnvironment.class)
|
||||
{
|
||||
if (defaultDevice == null)
|
||||
{
|
||||
defaultDevice = nativeGetDefaultScreenDevice();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return defaultDevice;
|
||||
}
|
||||
|
@ -247,23 +247,12 @@ public class GdkPixbufDecoder extends gnu.java.awt.image.ImageDecoder
|
||||
public static ImageFormatSpec registerFormat(String name, boolean writable)
|
||||
{
|
||||
ImageFormatSpec ifs = new ImageFormatSpec(name, writable);
|
||||
|
||||
// GCJ LOCAL: workaround a GCJ problem accessing
|
||||
// GdkPixbufDecoder.class
|
||||
try
|
||||
{
|
||||
synchronized(Class.forName ("gnu.java.awt.peer.gtk.GdkPixbufDecoder"))
|
||||
synchronized(GdkPixbufDecoder.class)
|
||||
{
|
||||
if (imageFormatSpecs == null)
|
||||
imageFormatSpecs = new ArrayList();
|
||||
imageFormatSpecs.add(ifs);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return ifs;
|
||||
}
|
||||
|
||||
|
@ -536,23 +536,13 @@ public class GtkToolkit extends gnu.java.awt.ClasspathToolkit
|
||||
|
||||
protected EventQueue getSystemEventQueueImpl()
|
||||
{
|
||||
// GCJ LOCAL: workaround a GCJ problem accessing
|
||||
// GtkToolkit.class
|
||||
try
|
||||
{
|
||||
synchronized (Class.forName ("gnu.java.awt.peer.gtk.GtkToolkit"))
|
||||
synchronized (GtkToolkit.class)
|
||||
{
|
||||
if (q == null)
|
||||
{
|
||||
q = new EventQueue();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return q;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user