gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/server dlist.cpp


From: Vitaly Alexeev
Subject: [Gnash-commit] gnash/server dlist.cpp
Date: Thu, 10 Aug 2006 08:39:49 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Vitaly Alexeev <alexeev>        06/08/10 08:39:49

Modified files:
        server         : dlist.cpp 

Log message:
        It is corrected (already again) a bug leading the wrong order of 
execution of a actionscript code/events

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/dlist.cpp?cvsroot=gnash&r1=1.17&r2=1.18

Patches:
Index: dlist.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/dlist.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- dlist.cpp   8 Aug 2006 11:11:07 -0000       1.17
+++ dlist.cpp   10 Aug 2006 08:39:49 -0000      1.18
@@ -198,13 +198,7 @@
        }
 
        ch->on_event(event_id::CONSTRUCT);
-       ch->execute_frame_tags(0, true);        // create dlist
-                                               // only. FIXME: this
-                                               // doesn't appear to
-                                               // actually do anything.
-
-       //log_msg("After adding, list is:");
-       //dump(std::cout);
+       ch->execute_frame_tags(0, false);       
 }
 
 void
@@ -246,10 +240,7 @@
                _characters.insert(it, di);
 
                ch->on_event(event_id::CONSTRUCT);
-               ch->execute_frame_tags(0, true);        // create dlist
-                                                       // only. FIXME: this
-                                                       // doesn't appear to
-                                                       // actually do anything.
+               ch->execute_frame_tags(0, false);       
        }
        else
        {




reply via email to

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