diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-09 05:52:52 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-09 05:52:52 +0000 |
commit | e3a998be9a147c866046fb11d51ca86a3b38ba4c (patch) | |
tree | 6c36436d65eb21fbb8681bcdd1a61ce35341ee7e /libjava/java/awt/image/MemoryImageSource.java | |
parent | 5399d6269bb5cd44d24f85fd0c5561969eab6ef2 (diff) | |
download | ppe42-gcc-e3a998be9a147c866046fb11d51ca86a3b38ba4c.tar.gz ppe42-gcc-e3a998be9a147c866046fb11d51ca86a3b38ba4c.zip |
2002-08-09 Mark Wielaard <mark@klomp.org>
* java/awt/image/MemoryImageSource.java: Change constructor to take
int[] not byte[].
* java/awt/Graphics2D.java: Uncomment methods that can now be
compiled.
* java/awt/GridBagLayout.java: New stub implementation.
* javax/swing/text/html/HTML.java: Stub implementation.
* javax/swing/text/html/parser/ParserDelegator.java: New stub
implementation.
2002-08-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* gnu/awt/j2d/Graphics2DImpl.java: Implement stubs for new abstract
methods in Graphics2D.
* Makefile.am: Add new files.
* Makefile.in: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56152 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/image/MemoryImageSource.java')
-rw-r--r-- | libjava/java/awt/image/MemoryImageSource.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/awt/image/MemoryImageSource.java b/libjava/java/awt/image/MemoryImageSource.java index fce112a0656..0e8d4620672 100644 --- a/libjava/java/awt/image/MemoryImageSource.java +++ b/libjava/java/awt/image/MemoryImageSource.java @@ -116,7 +116,7 @@ public class MemoryImageSource implements ImageProducer Constructs an ImageProducer from memory using the default RGB ColorModel */ public MemoryImageSource(int w, int h, - byte pix[], int off, int scan) + int pix[], int off, int scan) { this ( w, h, ColorModel.getRGBdefault(), pix, off, scan, null); } |