gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r12220: Silence old debug messages f


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r12220: Silence old debug messages for things not actively being worked on.
Date: Sat, 05 Jun 2010 11:00:48 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 12220
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Sat 2010-06-05 11:00:48 +0200
message:
  Silence old debug messages for things not actively being worked on.
modified:
  libcore/DisplayObject.cpp
  libcore/asobj/flash/display/MovieClip_as.cpp
=== modified file 'libcore/DisplayObject.cpp'
--- a/libcore/DisplayObject.cpp 2010-05-07 08:01:02 +0000
+++ b/libcore/DisplayObject.cpp 2010-06-05 09:00:48 +0000
@@ -800,11 +800,7 @@
        _mask = mask;
        _maskee = 0;
 
-       if ( _mask )
-       {
-               log_debug(" %s.setMask(%s): registering with new mask %s",
-                       getTarget(), mask ? mask->getTarget() : "null",
-                       _mask->getTarget());
+       if (_mask) {
                /// Register as as masked by the mask
                _mask->setMaskee(this);
        }
@@ -815,14 +811,10 @@
 {
        if ( _maskee == maskee ) { return; }
 
-       if ( _maskee )
-       {
+       if (_maskee) {
                // We don't want the maskee to call setMaskee(null)
                // on us again
-               log_debug(" %s.setMaskee(%s) : previously masked char %s "
-                "being set as non-masked", getTarget(), 
-                maskee ? maskee->getTarget() : "null", _maskee->getTarget());
-               _maskee->_mask = NULL;
+               _maskee->_mask = 0;
        }
 
        _maskee = maskee;

=== modified file 'libcore/asobj/flash/display/MovieClip_as.cpp'
--- a/libcore/asobj/flash/display/MovieClip_as.cpp      2010-03-22 23:46:33 
+0000
+++ b/libcore/asobj/flash/display/MovieClip_as.cpp      2010-06-05 09:00:48 
+0000
@@ -2235,8 +2235,6 @@
 movieclip_attachBitmap(const fn_call& fn)
 {
 
-    GNASH_REPORT_FUNCTION;
-
     MovieClip* ptr = ensure<IsDisplayObject<MovieClip> >(fn);
 
     if (fn.nargs < 2) {


reply via email to

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