gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/avm2 r9494: Add int actionscript class.


From: Tom Stellard
Subject: [Gnash-commit] /srv/bzr/gnash/avm2 r9494: Add int actionscript class.
Date: Tue, 19 Aug 2008 17:30:27 +0800
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9494
committer: Tom Stellard <address@hidden>
branch nick: gnash_dev
timestamp: Tue 2008-08-19 17:30:27 +0800
message:
  Add int actionscript class.
modified:
  libcore/asobj/ClassHierarchy.cpp
  libcore/asobj/Makefile.am
  libcore/namedStrings.cpp
  libcore/namedStrings.h
=== modified file 'libcore/asobj/ClassHierarchy.cpp'
--- a/libcore/asobj/ClassHierarchy.cpp  2008-08-05 03:45:40 +0000
+++ b/libcore/asobj/ClassHierarchy.cpp  2008-08-19 09:30:27 +0000
@@ -35,6 +35,7 @@
 #include "EventDispatcher.h"
 #include "Error_as.h"
 #include "Global.h"
+#include "int_as.h"
 #include "InteractiveObject.h"
 #include "String_as.h"
 #include "Key.h"
@@ -298,7 +299,8 @@
        { display_object_class_init, NSV::CLASS_DISPLAYOBJECT, 
NSV::CLASS_EVENTDISPATCHER, 9 },
        { interactive_object_class_init, NSV::CLASS_INTERACTIVEOBJECT, 
NSV::CLASS_DISPLAYOBJECT, 9 },
        { display_object_container_class_init, 
NSV::CLASS_DISPLAYOBJECTCONTAINER, NSV::CLASS_INTERACTIVEOBJECT, 9 },
-       { sprite_as_class_init, NSV::CLASS_SPRITE, 
NSV::CLASS_DISPLAYOBJECTCONTAINER, 9 }
+       { sprite_as_class_init, NSV::CLASS_SPRITE, 
NSV::CLASS_DISPLAYOBJECTCONTAINER, 9 },
+       { int_class_init, NSV::CLASS_INT, NSV::CLASS_OBJECT, 9 }
 
 // These classes are all implicitly constructed; that is, it is not necessary 
for
 // the class name to be used to construct the class, so they must always be 
available.

=== modified file 'libcore/asobj/Makefile.am'
--- a/libcore/asobj/Makefile.am 2008-08-05 03:45:40 +0000
+++ b/libcore/asobj/Makefile.am 2008-08-19 09:30:27 +0000
@@ -55,6 +55,7 @@
        Error_as.cpp \
        EventDispatcher.cpp \
        Global.cpp \
+       int_as.cpp \
        InteractiveObject.cpp \
        Key.cpp \
        LoadVars.cpp \
@@ -125,6 +126,7 @@
        EventDispatcher.h \
        Math_as.h       \
        Global.h\
+       int_as.h \
        InteractiveObject.h \
        Key.h \
        LoadVars.h \

=== modified file 'libcore/namedStrings.cpp'
--- a/libcore/namedStrings.cpp  2008-08-13 21:56:21 +0000
+++ b/libcore/namedStrings.cpp  2008-08-19 09:30:27 +0000
@@ -184,6 +184,7 @@
        string_table::svt( "InteractiveObject", NSV::CLASS_INTERACTIVEOBJECT ),
        string_table::svt( "DisplayObjectContainer", 
NSV::CLASS_DISPLAYOBJECTCONTAINER ),
        string_table::svt( "Sprite", NSV::CLASS_SPRITE ),
+       string_table::svt( "int", NSV::CLASS_INT ),
        string_table::svt( "flash.display", NSV::NS_FLASH_DISPLAY ),
        string_table::svt( "flash.text", NSV::NS_FLASH_TEXT ),
        string_table::svt( "flash.geom", NSV::NS_FLASH_GEOM ),

=== modified file 'libcore/namedStrings.h'
--- a/libcore/namedStrings.h    2008-08-13 21:56:21 +0000
+++ b/libcore/namedStrings.h    2008-08-19 09:30:27 +0000
@@ -202,6 +202,7 @@
                CLASS_INTERACTIVEOBJECT,
                CLASS_DISPLAYOBJECTCONTAINER,
                CLASS_SPRITE,
+               CLASS_INT,
                NS_FLASH_DISPLAY,
                NS_FLASH_TEXT,
                NS_FLASH_GEOM,


reply via email to

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