CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/11/07 12:00:58
Modified files: . : ChangeLog server : movie_root.cpp Log message: * server/movie_root.cpp (display): skip display of null-sized levels. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4791&r2=1.4792 http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_root.cpp?cvsroot=gnash&r1=1.116&r2=1.117 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4791 retrieving revision 1.4792 diff -u -b -r1.4791 -r1.4792 --- ChangeLog 7 Nov 2007 10:05:37 -0000 1.4791 +++ ChangeLog 7 Nov 2007 12:00:58 -0000 1.4792 @@ -1,5 +1,6 @@ 2007-11-07 Sandro Santilli <[EMAIL PROTECTED]> + * server/movie_root.cpp (display): skip display of null-sized levels. * testsuite/misc-ming.all/DrawingApiTest.as: have '-' and '+' use a step of 25% instead of 20% (easier for pixel checking); add hitTest for the opposite-el case. Index: server/movie_root.cpp =================================================================== RCS file: /sources/gnash/gnash/server/movie_root.cpp,v retrieving revision 1.116 retrieving revision 1.117 diff -u -b -r1.116 -r1.117 --- server/movie_root.cpp 2 Nov 2007 01:11:44 -0000 1.116 +++ server/movie_root.cpp 7 Nov 2007 12:00:58 -0000 1.117 @@ -855,7 +855,7 @@ // null frame size ? don't display ! const rect& sub_frame_size = movie->get_frame_size(); - if ( frame_size.is_null() ) + if ( sub_frame_size.is_null() ) { log_debug("_level%u has null frame size, skipping", i->first); continue; @@ -1394,7 +1394,7 @@ if ( _liveChars.size() > maxLiveChars ) { maxLiveChars = _liveChars.size(); - log_debug("Global instance list grew to %d entries", maxLiveChars); + log_debug("Global instance list grew to " SIZET_FMT " entries", maxLiveChars); } #endif _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit