Revision: 3328
          http://vexi.svn.sourceforge.net/vexi/?rev=3328&view=rev
Author:   clrg
Date:     2009-01-02 20:46:33 +0000 (Fri, 02 Jan 2009)

Log Message:
-----------
Fix buildcore fail due to double/int mismatch

Modified Paths:
--------------
    trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp

Modified: trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp
===================================================================
--- trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp  2009-01-02 20:43:16 UTC 
(rev 3327)
+++ trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp  2009-01-02 20:46:33 UTC 
(rev 3328)
@@ -560,7 +560,8 @@
                             // no option
                             } else break;
                             // reset everything and try again with new 
targetwidth
-                            
maxsizetotal=minsizetotal=total=numactive=expandnum=reducenum=0;
+                            
maxsizetotal=minsizetotal=numactive=expandnum=reducenum=0;
+                            total=0; // total is a double, the others are int
                             // protection against infinite loops
                             loop++;
                             if (loop>99) {
@@ -668,7 +669,8 @@
                             // no option
                             } else break;
                             // reset everything and try again with new 
targetheight
-                            
maxsizetotal=minsizetotal=total=numactive=expandnum=reducenum=0;
+                            
maxsizetotal=minsizetotal=numactive=expandnum=reducenum=0;
+                            total=0; // total is a double, the others are int
                             // protection against infinite loops
                             loop++;
                             if (loop>99) {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to