summaryrefslogtreecommitdiff
path: root/libjava/java/awt/image/MemoryImageSource.java
diff options
context:
space:
mode:
authorBryce McKinlay <bryce@gcc.gnu.org>2002-08-09 06:52:52 +0100
committerBryce McKinlay <bryce@gcc.gnu.org>2002-08-09 06:52:52 +0100
commit55202bee3c719dd0dc4d9a68fc7bf3edf66374af (patch)
tree6c36436d65eb21fbb8681bcdd1a61ce35341ee7e /libjava/java/awt/image/MemoryImageSource.java
parentef1c32c6371a869dafafe3219cdd1dbeef3c79eb (diff)
[multiple changes]
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. From-SVN: r56152
Diffstat (limited to 'libjava/java/awt/image/MemoryImageSource.java')
-rw-r--r--libjava/java/awt/image/MemoryImageSource.java2
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);
}