changeset in /hg/icedtea6: Fix bug noticed by Matthew Flaschen, ...

Deepak Bhole dbhole at redhat.com
Sat Oct 18 13:10:50 PDT 2008


changeset dafd805c02be in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=dafd805c02be
description:
	Fix bug noticed by Matthew Flaschen, applet size factors are now doubles
	instead of ints.

diffstat:

2 files changed, 13 insertions(+), 8 deletions(-)
ChangeLog                                         |    5 +++++
plugin/icedtea/sun/applet/PluginAppletViewer.java |   16 ++++++++--------

diffs (57 lines):

diff -r cd0b1ad5b02c -r dafd805c02be ChangeLog
--- a/ChangeLog	Sat Oct 18 16:16:41 2008 +0200
+++ b/ChangeLog	Sat Oct 18 16:08:37 2008 -0400
@@ -1,3 +1,8 @@ 2008-10-18  Matthias Klose  <doko at ubuntu
+2008-10-17  Deepak Bhole  <dbhole at redhat.com>
+
+	* plugin/icedtea/sun/applet/PluginAppletViewer.java: Make applet size
+	factors doubles instead of ints. 
+
 2008-10-18  Matthias Klose  <doko at ubuntu.com>
 
 	* Makefile.am: Write a summary of the jtreg test results.
diff -r cd0b1ad5b02c -r dafd805c02be plugin/icedtea/sun/applet/PluginAppletViewer.java
--- a/plugin/icedtea/sun/applet/PluginAppletViewer.java	Sat Oct 18 16:16:41 2008 +0200
+++ b/plugin/icedtea/sun/applet/PluginAppletViewer.java	Sat Oct 18 16:08:37 2008 -0400
@@ -134,8 +134,8 @@ import sun.misc.Ref;
      
      private static PluginCallRequestFactory requestFactory;
      
-     private int proposedHeightFactor;
-     private int proposedWidthFactor;
+     private double proposedHeightFactor;
+     private double proposedWidthFactor;
 
      /**
       * Null constructor to allow instantiation via newInstance()
@@ -159,15 +159,15 @@ import sun.misc.Ref;
          
          
          // we intercept height and width specifications here because 
-         proposedHeightFactor = 1;
-         proposedWidthFactor = 1;
+         proposedHeightFactor = 1.0;
+         proposedWidthFactor = 1.0;
 
          if (atts.get("heightPercentage") != null) {
-        	 proposedHeightFactor = (Integer) atts.get("heightPercentage")/100;
+        	 proposedHeightFactor = (Integer) atts.get("heightPercentage")/100.0;
          }
          
          if (((String) atts.get("width")).endsWith("%")) {
-        	 proposedWidthFactor = (Integer) atts.get("widthPercentage")/100;
+        	 proposedWidthFactor = (Integer) atts.get("widthPercentage")/100.0;
          }
  
          AccessController.doPrivileged(new PrivilegedAction() {
@@ -390,8 +390,8 @@ import sun.misc.Ref;
         	 String[] dimMsg = message.split(" ");
         	 // 0 => width, 1=> width_value, 2 => height, 3=> height_value
         	 
-        	 int height = proposedHeightFactor*Integer.parseInt(dimMsg[3]);
-        	 int width = proposedWidthFactor*Integer.parseInt(dimMsg[1]);
+        	 int height = (int) (proposedHeightFactor*Integer.parseInt(dimMsg[3]));
+        	 int width = (int) (proposedWidthFactor*Integer.parseInt(dimMsg[1]));
 
         	 if (panel instanceof NetxPanel)
         		 ((NetxPanel) panel).updateSizeInAtts(height, width);



More information about the distro-pkg-dev mailing list