gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/server sprite_instance.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash/server sprite_instance.cpp
Date: Thu, 01 Mar 2007 08:59:56 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/03/01 08:59:56

Modified files:
        server         : sprite_instance.cpp 

Log message:
        remove TESTING warning from drawing api calls

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/sprite_instance.cpp?cvsroot=gnash&r1=1.182&r2=1.183

Patches:
Index: sprite_instance.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/sprite_instance.cpp,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -b -r1.182 -r1.183
--- sprite_instance.cpp 28 Feb 2007 17:25:26 -0000      1.182
+++ sprite_instance.cpp 1 Mar 2007 08:59:56 -0000       1.183
@@ -802,13 +802,6 @@
 {
        sprite_instance* sprite = ensure_sprite(fn.this_ptr);
        sprite->endFill();
-
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("MovieClip.endFill() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -829,12 +822,6 @@
 
        sprite->lineTo(x, y);
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("MovieClip.lineTo() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -855,12 +842,6 @@
 
        sprite->moveTo(x, y);
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("MovieClip.moveTo() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -902,12 +883,6 @@
 
        sprite->lineStyle(thickness, color);
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("FIXME: MovieClip.lineStyle() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -930,12 +905,6 @@
 
        sprite->curveTo(cx, cy, ax, ay);
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("MovieClip.curveTo() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -945,12 +914,6 @@
 
        sprite->clear();
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("FIXME: MovieClip.clear() TESTING");
-               warned=true;
-       }
 }
 
 static void
@@ -977,12 +940,6 @@
 
        sprite->beginFill(color);
 
-       static bool warned = false;
-       if ( ! warned )
-       {
-               log_warning("MovieClip.beginFill() TESTING");
-               warned=true;
-       }
 }
 
 static void




reply via email to

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