From: zapata Date: Sun, 19 Jan 2003 21:59:34 +0000 (+0000) Subject: copy-paste bug fix X-Git-Tag: BEFORE_MERGE_1_1~285 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=0c6ce5eef867515693eeae32e8d02988bee2f9d3;p=mir.git copy-paste bug fix --- diff --git a/source/mircoders/media/ImageProcessor.java b/source/mircoders/media/ImageProcessor.java index cc1d4988..d09fddfd 100755 --- a/source/mircoders/media/ImageProcessor.java +++ b/source/mircoders/media/ImageProcessor.java @@ -126,7 +126,7 @@ public class ImageProcessor { } public int getHeight() { - return image.getWidth(); + return image.getHeight(); } public int getScaledWidth() { @@ -134,7 +134,7 @@ public class ImageProcessor { } public int getScaledHeight() { - return scaledImage.getWidth(); + return scaledImage.getHeight(); } public void writeScaledData(OutputStream aStream) {