gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/edit_text_character.cpp ...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/edit_text_character.cpp ...
Date: Sun, 24 Jun 2007 12:58:28 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/06/24 12:58:28

Modified files:
        .              : ChangeLog 
        server         : edit_text_character.cpp sprite_instance.cpp 
                         video_stream_instance.cpp 
        server/asobj   : System.cpp 

Log message:
                * server/: edit_text_character.cpp, sprite_instance.cpp,
                  video_stream_instance.cpp, asobj/System.cpp:
                  Don't initialize the "constructor" member explicitly as that's
                  done by the builtin_function class instead. This patch fixes
                  the useless construction of 7 to 11 objects (otherwise
                  deleted by first GC run).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3608&r2=1.3609
http://cvs.savannah.gnu.org/viewcvs/gnash/server/edit_text_character.cpp?cvsroot=gnash&r1=1.68&r2=1.69
http://cvs.savannah.gnu.org/viewcvs/gnash/server/sprite_instance.cpp?cvsroot=gnash&r1=1.291&r2=1.292
http://cvs.savannah.gnu.org/viewcvs/gnash/server/video_stream_instance.cpp?cvsroot=gnash&r1=1.29&r2=1.30
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/System.cpp?cvsroot=gnash&r1=1.12&r2=1.13

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3608
retrieving revision 1.3609
diff -u -b -r1.3608 -r1.3609
--- ChangeLog   24 Jun 2007 05:44:13 -0000      1.3608
+++ ChangeLog   24 Jun 2007 12:58:27 -0000      1.3609
@@ -1,3 +1,12 @@
+2007-06-24 Sandro Santilli <address@hidden>
+
+       * server/: edit_text_character.cpp, sprite_instance.cpp,
+         video_stream_instance.cpp, asobj/System.cpp:
+         Don't initialize the "constructor" member explicitly as that's
+         done by the builtin_function class instead. This patch fixes
+         the useless construction of 7 to 11 objects (otherwise 
+         deleted by first GC run).
+
 2007-06-24 Zou Lunkai <address@hidden>
 
        * testsuite/misc-ming.all/morph_test1.c: first testcase for morphs,

Index: server/edit_text_character.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/edit_text_character.cpp,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -b -r1.68 -r1.69
--- server/edit_text_character.cpp      15 Jun 2007 15:00:29 -0000      1.68
+++ server/edit_text_character.cpp      24 Jun 2007 12:58:28 -0000      1.69
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-/* $Id: edit_text_character.cpp,v 1.68 2007/06/15 15:00:29 strk Exp $ */
+/* $Id: edit_text_character.cpp,v 1.69 2007/06/24 12:58:28 strk Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -324,7 +324,7 @@
        {
                proto = new as_object();
                attachTextFieldInterface(*proto);
-               proto->init_member("constructor", new 
builtin_function(textfield_ctor)); 
+               //proto->init_member("constructor", new 
builtin_function(textfield_ctor)); 
        }
        return proto.get();
 }

Index: server/sprite_instance.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/sprite_instance.cpp,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -b -r1.291 -r1.292
--- server/sprite_instance.cpp  19 Jun 2007 22:25:55 -0000      1.291
+++ server/sprite_instance.cpp  24 Jun 2007 12:58:28 -0000      1.292
@@ -1628,7 +1628,7 @@
        {
                proto = new as_object();
                attachMovieClipInterface(*proto);
-               proto->init_member("constructor", new 
builtin_function(movieclip_ctor));
+               //proto->init_member("constructor", new 
builtin_function(movieclip_ctor));
        }
        return proto.get();
 }

Index: server/video_stream_instance.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/video_stream_instance.cpp,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- server/video_stream_instance.cpp    19 Jun 2007 09:26:54 -0000      1.29
+++ server/video_stream_instance.cpp    24 Jun 2007 12:58:28 -0000      1.30
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 // 
 
-// $Id: video_stream_instance.cpp,v 1.29 2007/06/19 09:26:54 strk Exp $
+// $Id: video_stream_instance.cpp,v 1.30 2007/06/24 12:58:28 strk Exp $
 
 #include "sprite_instance.h"
 #include "video_stream_instance.h"
@@ -46,7 +46,7 @@
        {
                proto = new as_object();
                attachVideoInterface(*proto);
-               proto->init_member("constructor", new 
builtin_function(video_ctor));
+               //proto->init_member("constructor", new 
builtin_function(video_ctor));
        }
        return proto.get();
 }

Index: server/asobj/System.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/System.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- server/asobj/System.cpp     18 Apr 2007 14:07:32 -0000      1.12
+++ server/asobj/System.cpp     24 Jun 2007 12:58:28 -0000      1.13
@@ -116,7 +116,7 @@
        {
                proto = new as_object();
                attachSystemInterface(*proto);
-               proto->init_member("constructor", new 
builtin_function(system_new)); 
+               //proto->init_member("constructor", new 
builtin_function(system_new)); 
        }
        return proto.get();
 }




reply via email to

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