* gnu/gcj/xlib/XImage.java: Likewise.
* gnu/gcj/xlib/XColor.java: Likewise.
From-SVN: r50498
+2002-03-09 Per Bothner <per@bothner.com>
+
+ * gnu/gcj/xlib/WindowAttributes.java Assign null to RawData, not 0.
+ * gnu/gcj/xlib/XImage.java: Likewise.
+ * gnu/gcj/xlib/XColor.java: Likewise.
+
2002-03-09 Adam Megacz <adam@xwt.org>
* java/lang/Win32Process.java (ConcreteProcess): Now throws an
{
WindowAttributes attributes = (WindowAttributes) super.clone();
// In case of an exception before the stucture is copied.
- attributes.in = 0;
- attributes.out = 0;
+ attributes.in = null;
+ attributes.out = null;
// FIXME: do anything else?
* Reference to XWindowAttribute structure containing attributes
* read from a window.
*/
- RawData in = 0;
+ RawData in = null;
/**
* Reference to XSetWindowAttribute structure containing attributes
* to be applied to a window.
*/
- RawData out = 0;
+ RawData out = null;
long mask;
public final native byte getFlags();
public final native long getPixelValue();
- RawData structure = 0;
+ RawData structure = null;
}
protected native void finalize();
boolean ownsData = false;
- RawData structure = 0;
+ RawData structure = null;
public final native int getWidth();
public final native int getHeight();