Enlightenment CVS committal

Author  : rbdpngn
Project : misc
Module  : erss

Dir     : misc/erss/src


Modified Files:
        tooltip.c 


Log Message:
Don't assume coords are doubles.

===================================================================
RCS file: /cvsroot/enlightenment/misc/erss/src/tooltip.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- tooltip.c   24 Aug 2004 17:31:55 -0000      1.12
+++ tooltip.c   24 Aug 2004 20:48:14 -0000      1.13
@@ -84,7 +84,7 @@
        evas_object_geometry_get(tt->etox, NULL, NULL, &ew, &eh);
 
        if (eh > ew) {
-               double scale = ew / eh;
+               double scale = (double)ew / (double)eh;
                ew = ew / scale;
                eh *= scale;
                evas_object_resize(tt->etox, ew, eh);




-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to