gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/asobj/flash/geom/Point_a...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/asobj/flash/geom/Point_a...
Date: Mon, 19 May 2008 17:06:38 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/05/19 17:06:38

Modified files:
        .              : ChangeLog 
        server/asobj/flash/geom: Point_as.cpp 

Log message:
        * server/asobj/flash/geom/Point_as.cpp (attachPointStaticProperties):
          Don't protect static properties. Gets closer to succeed swfdec's
          point-properties-*.swf. Won't get any further at would require
          either an ugly hack (providing an empty useless-looking prototype)
          or some longer support (prototype by destructive setter).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6652&r2=1.6653
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/flash/geom/Point_as.cpp?cvsroot=gnash&r1=1.13&r2=1.14

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6652
retrieving revision 1.6653
diff -u -b -r1.6652 -r1.6653
--- ChangeLog   19 May 2008 16:49:57 -0000      1.6652
+++ ChangeLog   19 May 2008 17:06:37 -0000      1.6653
@@ -1,5 +1,13 @@
 2008-05-19 Sandro Santilli <address@hidden>
 
+       * server/asobj/flash/geom/Point_as.cpp (attachPointStaticProperties):
+         Don't protect static properties. Gets closer to succeed swfdec's
+         point-properties-*.swf. Won't get any further at would require
+         either an ugly hack (providing an empty useless-looking prototype)
+         or some longer support (prototype by destructive setter).
+
+2008-05-19 Sandro Santilli <address@hidden>
+
        * server/asobj/Global.cpp, server/asobj/flash_pkg.cpp:
          Register the 'flash' package starting at swf6, just 
          hide by prop flags (so to get more successes in swfdec testsuite).

Index: server/asobj/flash/geom/Point_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/flash/geom/Point_as.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- server/asobj/flash/geom/Point_as.cpp        19 May 2008 16:32:23 -0000      
1.13
+++ server/asobj/flash/geom/Point_as.cpp        19 May 2008 17:06:38 -0000      
1.14
@@ -65,10 +65,9 @@
 static void
 attachPointStaticProperties(as_object& o)
 {
-   
-    o.init_member("distance", new builtin_function(Point_distance));
-    o.init_member("interpolate", new builtin_function(Point_interpolate));
-    o.init_member("polar", new builtin_function(Point_polar));
+    o.init_member("distance", new builtin_function(Point_distance), 0);
+    o.init_member("interpolate", new builtin_function(Point_interpolate), 0);
+    o.init_member("polar", new builtin_function(Point_polar), 0);
 }
 
 static as_object*




reply via email to

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