gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog server/edit_text_character.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog server/edit_text_character.cpp
Date: Sat, 07 Jun 2008 00:31:14 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  08/06/07 00:31:14

Modified files:
        .              : ChangeLog 
        server         : edit_text_character.cpp 

Log message:
        Use isFinite(), instead of finite()

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6848&r2=1.6849
http://cvs.savannah.gnu.org/viewcvs/gnash/server/edit_text_character.cpp?cvsroot=gnash&r1=1.192&r2=1.193

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6848
retrieving revision 1.6849
diff -u -b -r1.6848 -r1.6849
--- ChangeLog   6 Jun 2008 23:55:15 -0000       1.6848
+++ ChangeLog   7 Jun 2008 00:31:13 -0000       1.6849
@@ -5,6 +5,8 @@
          gcc supports it.
        * utility.h: Fixed a quirk on Leopard/BSD for isfinite();
        * libmedia/ffmpeg/MediaParserFfmpeg.cpp: Fixed #ifndef.
+       * server/edit_text_character.cpp: Use isFinite(), instead of 
+         finite().
 
 2008-06-06 Russ Nelson <address@hidden>
 

Index: server/edit_text_character.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/edit_text_character.cpp,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -b -r1.192 -r1.193
--- server/edit_text_character.cpp      5 Jun 2008 03:26:32 -0000       1.192
+++ server/edit_text_character.cpp      7 Jun 2008 00:31:14 -0000       1.193
@@ -949,7 +949,7 @@
        case NSV::PROP_uWIDTH:
        {
                float nw = PIXELS_TO_TWIPS(val.to_number()); // TODO: pass an 
as_environment !
-               if ( ! finite(nw) )
+               if ( ! utility::isFinite(nw) )
                {
                        // might be our fault, see the TODO above (missing to 
pass as_environment out..)
                        IF_VERBOSE_ASCODING_ERRORS(
@@ -1010,7 +1010,7 @@
        case NSV::PROP_uHEIGHT:
        {
                float nh = PIXELS_TO_TWIPS(val.to_number()); // TODO: pass an 
as_environment !
-               if ( ! finite(nh) )
+               if ( ! utility::isFinite(nh) )
                {
                        // might be our fault, see the TODO above (missing to 
pass as_environment out..)
                        IF_VERBOSE_ASCODING_ERRORS(




reply via email to

[Prev in Thread] Current Thread [Next in Thread]