From 55202bee3c719dd0dc4d9a68fc7bf3edf66374af Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Fri, 9 Aug 2002 06:52:52 +0100 Subject: [multiple changes] 2002-08-09 Mark Wielaard * 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 * gnu/awt/j2d/Graphics2DImpl.java: Implement stubs for new abstract methods in Graphics2D. * Makefile.am: Add new files. * Makefile.in: Rebuilt. From-SVN: r56152 --- libjava/java/awt/image/MemoryImageSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libjava/java/awt/image/MemoryImageSource.java') 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); } -- cgit v1.2.3