gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-524-g9a78bbe
Date: Wed, 06 Apr 2011 16:55:19 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  9a78bbe5ee4f07bc342d42da9c313643e423c428 (commit)
      from  636caca17e0577f50f0e9b4a5dbe04e9e058e036 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=9a78bbe5ee4f07bc342d42da9c313643e423c428


commit 9a78bbe5ee4f07bc342d42da9c313643e423c428
Author: Sandro Santilli <address@hidden>
Date:   Wed Apr 6 18:55:07 2011 +0200

    Fix build with DEBUG_SET_INVALIDATED defined

diff --git a/libcore/DisplayObject.cpp b/libcore/DisplayObject.cpp
index f859829..6f1538c 100644
--- a/libcore/DisplayObject.cpp
+++ b/libcore/DisplayObject.cpp
@@ -203,13 +203,14 @@ DisplayObject::set_invalidated(const char* debug_file, 
int debug_line)
     {
         _invalidated = true;
         
-        #ifdef DEBUG_SET_INVALIDATED
+#ifdef DEBUG_SET_INVALIDATED
+        ObjectURI::Logger l(getStringTable(*getObject(this)));
         log_debug("%p set_invalidated() of %s in %s:%d",
-            (void*)this, get_name(), debug_file, debug_line);
-        #else
+            (void*)this, l(get_name()), debug_file, debug_line);
+#else
         UNUSED(debug_file);
         UNUSED(debug_line);
-        #endif
+#endif
         
         // NOTE: the SnappingRanges instance used here is not initialized by 
the
         // GUI and therefore uses the default settings. This should not be a 

-----------------------------------------------------------------------

Summary of changes:
 libcore/DisplayObject.cpp |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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