gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r12008: Remove unused include direct


From: Bastiaan Jacques
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r12008: Remove unused include directives.
Date: Wed, 10 Mar 2010 17:13:07 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 12008
committer: Bastiaan Jacques <address@hidden>
branch nick: trunk
timestamp: Wed 2010-03-10 17:13:07 +0100
message:
  Remove unused include directives.
modified:
  backend/Renderer.h
  gui/gtk_glue_agg.cpp
  libcore/DisplayObject.h
  libcore/ExportableResource.h
  libcore/Geometry.h
  libcore/LoadVariablesThread.h
  libcore/NativeFunction.h
  libcore/ObjectURI.h
  libcore/Property.h
  libcore/Video.h
  libcore/VirtualClock.h
  libcore/abc/Class.h
  libcore/abc/Method.h
  libcore/as_environment.h
  libcore/as_object.h
  libcore/as_value.h
  libcore/asobj/Array_as.h
  libcore/asobj/Boolean_as.h
  libcore/asobj/Date_as.h
  libcore/asobj/Global_as.h
  libcore/asobj/Globals.cpp
  libcore/asobj/LoadableObject.h
  libcore/asobj/Number_as.h
  libcore/asobj/flash/external/ExternalInterface_as.h
  libcore/asobj/flash/filters/DisplacementMapFilter_as.h
  libcore/asobj/flash/geom/Point_as.h
  libcore/asobj/flash/net/FileReferenceList_as.h
  libcore/asobj/flash/net/FileReference_as.h
  libcore/asobj/flash/net/NetConnection_as.h
  libcore/asobj/flash/text/TextRenderer_as.h
  libcore/asobj/flash/xml/XMLDocument_as.h
  libcore/asobj/flash/xml/XMLNode_as.h
  libcore/gnash.h
  libcore/parser/BitmapMovieDefinition.h
  libcore/parser/SWFMovieDefinition.h
  libcore/parser/SWFParser.h
  libcore/parser/action_buffer.h
  libcore/parser/movie_definition.h
  libcore/parser/sound_definition.h
  libcore/swf/ControlTag.h
  libcore/swf/DefineScalingGridTag.h
  libcore/swf/DefineTextTag.h
  libcore/swf/DefinitionTag.h
  libcore/swf/DisplayListTag.h
  libcore/swf/PlaceObject2Tag.h
  libcore/swf/SetTabIndexTag.h
  libcore/swf/StartSoundTag.h
  libcore/swf_event.h
  libcore/swf_function.h
  libcore/vm/ASHandlers.h
  libcore/vm/SafeStack.h
  libcore/vm/VM.h
  libcore/vm/fn_call.h
  libcore/vm/with_stack_entry.h
=== modified file 'backend/Renderer.h'
--- a/backend/Renderer.h        2010-03-06 18:30:16 +0000
+++ b/backend/Renderer.h        2010-03-10 16:13:07 +0000
@@ -151,6 +151,7 @@
 #include "DisplayObject.h"
 #include "Range2d.h"
 #include "RGBA.h"
+#include "log.h"
 
 // Forward declarations.
 namespace gnash {

=== modified file 'gui/gtk_glue_agg.cpp'
--- a/gui/gtk_glue_agg.cpp      2010-02-23 17:06:43 +0000
+++ b/gui/gtk_glue_agg.cpp      2010-03-10 16:13:07 +0000
@@ -34,6 +34,7 @@
 #include "Renderer.h"
 #include "Renderer_agg.h"
 #include "gtk_glue_agg.h"
+#include "GnashException.h"
 
 namespace gnash
 {

=== modified file 'libcore/DisplayObject.h'
--- a/libcore/DisplayObject.h   2010-01-11 06:41:38 +0000
+++ b/libcore/DisplayObject.h   2010-03-10 16:13:07 +0000
@@ -31,7 +31,6 @@
 #include "SWFMatrix.h" // for composition
 #include "cxform.h" // for composition
 #include "dsodefs.h" //for DSOEXPORT
-#include "log.h"
 #include "snappingrange.h"
 #ifdef USE_SWFTREE
 # include "tree.hh"

=== modified file 'libcore/ExportableResource.h'
--- a/libcore/ExportableResource.h      2010-01-25 18:52:20 +0000
+++ b/libcore/ExportableResource.h      2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #define GNASH_RESOURCE_H
 
 #include "ref_counted.h" // for inheritance
-#include "smart_ptr.h"
 
 namespace gnash {
 

=== modified file 'libcore/Geometry.h'
--- a/libcore/Geometry.h        2010-01-14 12:03:17 +0000
+++ b/libcore/Geometry.h        2010-03-10 16:13:07 +0000
@@ -22,7 +22,6 @@
 #include "dsodefs.h"
 #include "SWFMatrix.h" 
 #include "LineStyle.h"
-#include "log.h"
 
 #include <vector> // for path composition
 #include <cmath> // sqrt

=== modified file 'libcore/LoadVariablesThread.h'
--- a/libcore/LoadVariablesThread.h     2010-01-11 06:41:38 +0000
+++ b/libcore/LoadVariablesThread.h     2010-03-10 16:13:07 +0000
@@ -24,8 +24,6 @@
 #include "StreamProvider.h" // for inlines
 #include "URL.h" // for inlines
 
-#include "log.h"
-#include "IOChannel.h"
 
 #include <string>
 #include <map>

=== modified file 'libcore/NativeFunction.h'
--- a/libcore/NativeFunction.h  2010-01-11 06:41:38 +0000
+++ b/libcore/NativeFunction.h  2010-03-10 16:13:07 +0000
@@ -21,7 +21,6 @@
 
 #include "as_function.h" // for inheritance
 #include "fn_call.h" // for call operator
-#include "namedStrings.h"
 
 #include <cassert>
 

=== modified file 'libcore/ObjectURI.h'
--- a/libcore/ObjectURI.h       2009-12-04 09:20:14 +0000
+++ b/libcore/ObjectURI.h       2010-03-10 16:13:07 +0000
@@ -4,7 +4,6 @@
 
 #include "string_table.h"
 #include <ostream>
-#include <boost/format.hpp>
 /// Define this for verbose logging of ObjectURIs
 //#define FULL_OBJECT_URI_LOGGING 1
 

=== modified file 'libcore/Property.h'
--- a/libcore/Property.h        2010-01-11 06:41:38 +0000
+++ b/libcore/Property.h        2010-03-10 16:13:07 +0000
@@ -23,7 +23,6 @@
 #include "PropFlags.h"
 #include "as_value.h"
 #include "string_table.h"
-#include "log.h"
 #include "ObjectURI.h"
 
 #include <boost/variant.hpp>

=== modified file 'libcore/Video.h'
--- a/libcore/Video.h   2010-01-11 06:41:38 +0000
+++ b/libcore/Video.h   2010-03-10 16:13:07 +0000
@@ -22,7 +22,6 @@
 #define GNASH_VIDEO_H
 
 #include "DisplayObject.h" // for inheritance
-#include "swf/DefineVideoStreamTag.h"
 
 // Forward declarations
 namespace gnash {

=== modified file 'libcore/VirtualClock.h'
--- a/libcore/VirtualClock.h    2010-01-25 18:52:20 +0000
+++ b/libcore/VirtualClock.h    2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #ifndef GNASH_VIRTUAL_CLOCK_H
 #define GNASH_VIRTUAL_CLOCK_H
 
-#include <memory> // for InterruptableVirtualClock
 #include <cassert> // for InterruptableVirtualClock
 
 namespace gnash

=== modified file 'libcore/abc/Class.h'
--- a/libcore/abc/Class.h       2010-01-01 17:48:26 +0000
+++ b/libcore/abc/Class.h       2010-03-10 16:13:07 +0000
@@ -25,12 +25,9 @@
 #include <list>
 #include <map>
 #include <vector>
-#include <iostream>
 #include "string_table.h"
 #include "as_value.h"
-#include "as_object.h"
 #include "Property.h"
-#include "CodeStream.h"
 #include "AbcBlock.h"
 
 namespace gnash {

=== modified file 'libcore/abc/Method.h'
--- a/libcore/abc/Method.h      2010-01-01 17:48:26 +0000
+++ b/libcore/abc/Method.h      2010-03-10 16:13:07 +0000
@@ -22,10 +22,7 @@
 #include "gnashconfig.h"
 #endif
 
-#include "log.h"
 #include "string_table.h"
-#include "Property.h"
-#include "namedStrings.h"
 #include "AbcBlock.h"
 
 #include <list>

=== modified file 'libcore/as_environment.h'
--- a/libcore/as_environment.h  2010-01-11 06:41:38 +0000
+++ b/libcore/as_environment.h  2010-03-10 16:13:07 +0000
@@ -21,8 +21,6 @@
 
 #include "smart_ptr.h" // GNASH_USE_GC
 #include "as_value.h" // for composition (vector + frame_slot)
-#include "StringPredicates.h" // for Variables 
-#include "as_object.h"
 #include "SafeStack.h"
 #include "CallStack.h" // for composition
 

=== modified file 'libcore/as_object.h'
--- a/libcore/as_object.h       2010-02-15 18:13:55 +0000
+++ b/libcore/as_object.h       2010-03-10 16:13:07 +0000
@@ -30,7 +30,6 @@
 #include "as_value.h" 
 #include "smart_ptr.h"
 #include "PropFlags.h"
-#include "GnashException.h"
 #include "Relay.h"
 #include "ObjectURI.h"
 

=== modified file 'libcore/as_value.h'
--- a/libcore/as_value.h        2010-02-10 09:47:04 +0000
+++ b/libcore/as_value.h        2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #define GNASH_AS_VALUE_H
 
 #include "dsodefs.h"
-#include "smart_ptr.h"
 #include "CharacterProxy.h"
 
 #include <cmath>

=== modified file 'libcore/asobj/Array_as.h'
--- a/libcore/asobj/Array_as.h  2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/Array_as.h  2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #define GNASH_ARRAY_H
 
 #include "as_object.h" 
-#include "Global_as.h"
 
 // Forward declarations
 namespace gnash {

=== modified file 'libcore/asobj/Boolean_as.h'
--- a/libcore/asobj/Boolean_as.h        2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/Boolean_as.h        2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #ifndef GNASH_ASOBJ_BOOLEAN_H
 #define GNASH_ASOBJ_BOOLEAN_H
 
-#include "smart_ptr.h"
 
 namespace gnash {
 

=== modified file 'libcore/asobj/Date_as.h'
--- a/libcore/asobj/Date_as.h   2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/Date_as.h   2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #define GNASH_ASOBJ_DATE_H
 
 #include "as_object.h" // for inheritance
-#include "fn_call.h" // for inheritance
 #include "ClockTime.h"
 
 namespace gnash {

=== modified file 'libcore/asobj/Global_as.h'
--- a/libcore/asobj/Global_as.h 2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/Global_as.h 2010-03-10 16:13:07 +0000
@@ -24,6 +24,7 @@
 #include "fn_call.h"
 #include "GnashException.h"
 #include "as_function.h"
+#include "log.h"
 
 #include <boost/preprocessor/arithmetic/inc.hpp>
 #include <boost/preprocessor/repetition/enum_params.hpp>

=== modified file 'libcore/asobj/Globals.cpp'
--- a/libcore/asobj/Globals.cpp 2010-02-15 14:55:30 +0000
+++ b/libcore/asobj/Globals.cpp 2010-03-10 16:13:07 +0000
@@ -106,6 +106,7 @@
 #include "Namespace_as.h"
 #include "QName_as.h"
 #include "Object.h"
+#include "LoadableObject.h"
 
 #include <map>
 #include <limits> 

=== modified file 'libcore/asobj/LoadableObject.h'
--- a/libcore/asobj/LoadableObject.h    2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/LoadableObject.h    2010-03-10 16:13:07 +0000
@@ -21,7 +21,6 @@
 #ifndef GNASH_LOADABLE_OBJECT_H
 #define GNASH_LOADABLE_OBJECT_H
 
-#include "movie_root.h"
 
 namespace gnash {
     class as_object;

=== modified file 'libcore/asobj/Number_as.h'
--- a/libcore/asobj/Number_as.h 2010-01-11 06:41:38 +0000
+++ b/libcore/asobj/Number_as.h 2010-03-10 16:13:07 +0000
@@ -21,9 +21,7 @@
 #ifndef GNASH_NUMBER_H
 #define GNASH_NUMBER_H
 
-#include "smart_ptr.h"
 
-#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/external/ExternalInterface_as.h'
--- a/libcore/asobj/flash/external/ExternalInterface_as.h       2010-01-25 
18:52:20 +0000
+++ b/libcore/asobj/flash/external/ExternalInterface_as.h       2010-03-10 
16:13:07 +0000
@@ -22,7 +22,6 @@
 #define GNASH_ASOBJ_EXTERNALINTERFACE_H
 
 
-//#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/filters/DisplacementMapFilter_as.h'
--- a/libcore/asobj/flash/filters/DisplacementMapFilter_as.h    2010-01-25 
18:52:20 +0000
+++ b/libcore/asobj/flash/filters/DisplacementMapFilter_as.h    2010-03-10 
16:13:07 +0000
@@ -22,7 +22,6 @@
 #define __GNASH_ASOBJ_DISPLACEMENTMAPFILTER_H__
 
 
-//#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/geom/Point_as.h'
--- a/libcore/asobj/flash/geom/Point_as.h       2010-01-25 18:52:20 +0000
+++ b/libcore/asobj/flash/geom/Point_as.h       2010-03-10 16:13:07 +0000
@@ -22,7 +22,6 @@
 #define GNASH_ASOBJ_POINT_H
 
 
-#include "smart_ptr.h" // boost::intrusive_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/net/FileReferenceList_as.h'
--- a/libcore/asobj/flash/net/FileReferenceList_as.h    2010-01-25 18:52:20 
+0000
+++ b/libcore/asobj/flash/net/FileReferenceList_as.h    2010-03-10 16:13:07 
+0000
@@ -22,7 +22,6 @@
 #define __GNASH_ASOBJ_FILEREFERENCELIST_H__
 
 
-//#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/net/FileReference_as.h'
--- a/libcore/asobj/flash/net/FileReference_as.h        2010-01-25 18:52:20 
+0000
+++ b/libcore/asobj/flash/net/FileReference_as.h        2010-03-10 16:13:07 
+0000
@@ -22,7 +22,6 @@
 #define __GNASH_ASOBJ_FILEREFERENCE_H__
 
 
-//#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/net/NetConnection_as.h'
--- a/libcore/asobj/flash/net/NetConnection_as.h        2010-01-11 06:41:38 
+0000
+++ b/libcore/asobj/flash/net/NetConnection_as.h        2010-03-10 16:13:07 
+0000
@@ -20,9 +20,7 @@
 #ifndef GNASH_NETCONNECTION_H
 #define GNASH_NETCONNECTION_H
 
-#include "IOChannel.h"
 #include "as_object.h" // for inheritance
-#include "fn_call.h"
 
 #include <string>
 #include <list>

=== modified file 'libcore/asobj/flash/text/TextRenderer_as.h'
--- a/libcore/asobj/flash/text/TextRenderer_as.h        2010-01-25 18:52:20 
+0000
+++ b/libcore/asobj/flash/text/TextRenderer_as.h        2010-03-10 16:13:07 
+0000
@@ -22,7 +22,6 @@
 #define __GNASH_ASOBJ_TEXTRENDERER_H__
 
 
-//#include <memory> // for auto_ptr
 
 namespace gnash {
 

=== modified file 'libcore/asobj/flash/xml/XMLDocument_as.h'
--- a/libcore/asobj/flash/xml/XMLDocument_as.h  2010-02-10 13:56:56 +0000
+++ b/libcore/asobj/flash/xml/XMLDocument_as.h  2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #ifndef GNASH_ASOBJ3_XMLDOCUMENT_H
 #define GNASH_ASOBJ3_XMLDOCUMENT_H
 
-#include "LoadableObject.h"
 #include "xml/XMLNode_as.h"
 #include "log.h"
 #include "dsodefs.h"

=== modified file 'libcore/asobj/flash/xml/XMLNode_as.h'
--- a/libcore/asobj/flash/xml/XMLNode_as.h      2010-01-25 18:52:20 +0000
+++ b/libcore/asobj/flash/xml/XMLNode_as.h      2010-03-10 16:13:07 +0000
@@ -23,7 +23,6 @@
 
 #include "as_object.h"
 #include "smart_ptr.h" // GNASH_USE_GC
-#include "log.h"
 
 #include <list>
 #include <vector>

=== modified file 'libcore/gnash.h'
--- a/libcore/gnash.h   2010-02-03 12:23:38 +0000
+++ b/libcore/gnash.h   2010-03-10 16:13:07 +0000
@@ -26,7 +26,6 @@
 
 #include "dsodefs.h"
 
-#include <string>
 
 namespace gnash {
        class IOChannel;

=== modified file 'libcore/parser/BitmapMovieDefinition.h'
--- a/libcore/parser/BitmapMovieDefinition.h    2010-01-01 17:48:26 +0000
+++ b/libcore/parser/BitmapMovieDefinition.h    2010-03-10 16:13:07 +0000
@@ -22,7 +22,6 @@
 #include "movie_definition.h" // for inheritance
 #include "SWFRect.h" // for composition
 #include "BitmapInfo.h" // for destructor visibility by intrusive_ptr
-#include "DynamicShape.h" // for destructor visibility by intrusive_ptr
 #include "GnashImage.h"
 #include "GnashNumeric.h"
 

=== modified file 'libcore/parser/SWFMovieDefinition.h'
--- a/libcore/parser/SWFMovieDefinition.h       2010-03-09 02:52:16 +0000
+++ b/libcore/parser/SWFMovieDefinition.h       2010-03-10 16:13:07 +0000
@@ -29,7 +29,6 @@
 
 #include "smart_ptr.h" // GNASH_USE_GC
 #include "GnashImageJpeg.h"
-#include "IOChannel.h"
 #include "movie_definition.h" // for inheritance
 #include "DefinitionTag.h" // for boost::intrusive_ptr visibility of dtor
 #include "StringPredicates.h" 

=== modified file 'libcore/parser/SWFParser.h'
--- a/libcore/parser/SWFParser.h        2010-01-11 06:41:38 +0000
+++ b/libcore/parser/SWFParser.h        2010-03-10 16:13:07 +0000
@@ -24,7 +24,6 @@
 #define GNASH_SWFPARSER_H
 
 #include "SWF.h"
-#include "TagLoadersTable.h"
 
 namespace gnash {
     class SWFStream;

=== modified file 'libcore/parser/action_buffer.h'
--- a/libcore/parser/action_buffer.h    2010-01-11 06:41:38 +0000
+++ b/libcore/parser/action_buffer.h    2010-03-10 16:13:07 +0000
@@ -24,7 +24,6 @@
 #include <vector> // for composition
 
 #include "GnashException.h"
-#include "smart_ptr.h"
 #include "log.h" // For gettext macro
 
 // Forward declarations

=== modified file 'libcore/parser/movie_definition.h'
--- a/libcore/parser/movie_definition.h 2010-03-08 04:03:14 +0000
+++ b/libcore/parser/movie_definition.h 2010-03-10 16:13:07 +0000
@@ -58,6 +58,7 @@
 #include <memory> // for auto_ptr
 #include <vector> // for PlayList typedef
 #include <set>
+#include <boost/intrusive_ptr.hpp>
 
 // Forward declarations
 namespace gnash {

=== modified file 'libcore/parser/sound_definition.h'
--- a/libcore/parser/sound_definition.h 2010-01-01 17:48:26 +0000
+++ b/libcore/parser/sound_definition.h 2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 
 
 #include "ExportableResource.h"
-#include "ControlTag.h" // for sound tags inheritance
 #include "RunResources.h" // TODO: drop.
 
 // Forward declarations

=== modified file 'libcore/swf/ControlTag.h'
--- a/libcore/swf/ControlTag.h  2010-01-11 06:41:38 +0000
+++ b/libcore/swf/ControlTag.h  2010-03-10 16:13:07 +0000
@@ -19,7 +19,6 @@
 #ifndef GNASH_CONTROL_TAG_H
 #define GNASH_CONTROL_TAG_H
 
-#include <cassert>
 
 // Forward declarations
 namespace gnash {

=== modified file 'libcore/swf/DefineScalingGridTag.h'
--- a/libcore/swf/DefineScalingGridTag.h        2010-01-11 06:41:38 +0000
+++ b/libcore/swf/DefineScalingGridTag.h        2010-03-10 16:13:07 +0000
@@ -22,8 +22,6 @@
 
 #include "smart_ptr.h" // GNASH_USE_GC
 #include "SWF.h"
-#include "ShapeRecord.h"
-#include "DefinitionTag.h"
 
 // Forward declarations.
 namespace gnash {

=== modified file 'libcore/swf/DefineTextTag.h'
--- a/libcore/swf/DefineTextTag.h       2010-01-25 18:52:20 +0000
+++ b/libcore/swf/DefineTextTag.h       2010-03-10 16:13:07 +0000
@@ -23,7 +23,6 @@
 #include "LineStyle.h" 
 #include "SWFRect.h" // for composition
 #include "SWF.h"
-#include "movie_definition.h"
 #include "SWFMatrix.h"
 #include "TextRecord.h"
 

=== modified file 'libcore/swf/DefinitionTag.h'
--- a/libcore/swf/DefinitionTag.h       2010-01-11 06:41:38 +0000
+++ b/libcore/swf/DefinitionTag.h       2010-03-10 16:13:07 +0000
@@ -21,8 +21,6 @@
 
 #include "ExportableResource.h"
 
-#include <boost/cstdint.hpp>
-#include <vector>
 #include <boost/noncopyable.hpp>
 
 // Forward declarations

=== modified file 'libcore/swf/DisplayListTag.h'
--- a/libcore/swf/DisplayListTag.h      2010-01-25 18:52:20 +0000
+++ b/libcore/swf/DisplayListTag.h      2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #define GNASH_SWF_DISPLAYLISTTAG_H
 
 #include "ControlTag.h" // for inheritance
-//#include "SWF.h" // for TagType definition
 
 
 // Forward declarations

=== modified file 'libcore/swf/PlaceObject2Tag.h'
--- a/libcore/swf/PlaceObject2Tag.h     2010-01-25 18:52:20 +0000
+++ b/libcore/swf/PlaceObject2Tag.h     2010-03-10 16:13:07 +0000
@@ -22,7 +22,6 @@
 #include "SWF.h" // for TagType definition
 #include "SWFMatrix.h" // for composition
 #include "cxform.h" // for composition 
-#include "DisplayObject.h" // BlendMode enum
 #include <vector>
 
 // Forward declarations

=== modified file 'libcore/swf/SetTabIndexTag.h'
--- a/libcore/swf/SetTabIndexTag.h      2010-01-11 06:41:38 +0000
+++ b/libcore/swf/SetTabIndexTag.h      2010-03-10 16:13:07 +0000
@@ -19,8 +19,6 @@
 
 #include "smart_ptr.h" // GNASH_USE_GC
 #include "SWF.h"
-#include "ShapeRecord.h"
-#include "DefinitionTag.h"
 
 // Forward declarations.
 namespace gnash {

=== modified file 'libcore/swf/StartSoundTag.h'
--- a/libcore/swf/StartSoundTag.h       2010-01-25 18:52:20 +0000
+++ b/libcore/swf/StartSoundTag.h       2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 
 #include "ControlTag.h" // for inheritance
 #include "sound_handler.h" // for sound_envelope (composition)
-#include "VM.h" // We only need this to get movie_root
 #include "SWF.h" // for TagType definition
 #include "SoundInfoRecord.h"
 

=== modified file 'libcore/swf_event.h'
--- a/libcore/swf_event.h       2010-01-11 06:41:38 +0000
+++ b/libcore/swf_event.h       2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #ifndef GNASH_SWF_EVENT_H
 #define GNASH_SWF_EVENT_H
 
-#include "as_value.h" // for composition
 #include "action_buffer.h" // for composition
 #include "event_id.h" // for composition
 

=== modified file 'libcore/swf_function.h'
--- a/libcore/swf_function.h    2010-01-25 18:52:20 +0000
+++ b/libcore/swf_function.h    2010-03-10 16:13:07 +0000
@@ -23,7 +23,6 @@
 #include "as_object.h" // for composition (vector element)
 #include "VM.h" //fow SWF version
 
-#include <boost/algorithm/string/case_conv.hpp> 
 #include <cassert>
 #include <string>
 

=== modified file 'libcore/vm/ASHandlers.h'
--- a/libcore/vm/ASHandlers.h   2010-02-08 07:44:10 +0000
+++ b/libcore/vm/ASHandlers.h   2010-03-10 16:13:07 +0000
@@ -19,7 +19,6 @@
 #define GNASH_ASHANDLERS_H
 
 #include <string>
-#include <map>
 #include <vector>
 #include "SWF.h"
 

=== modified file 'libcore/vm/SafeStack.h'
--- a/libcore/vm/SafeStack.h    2010-01-01 17:48:26 +0000
+++ b/libcore/vm/SafeStack.h    2010-03-10 16:13:07 +0000
@@ -20,7 +20,6 @@
 #ifndef GNASH_SAFESTACK_H
 #define GNASH_SAFESTACK_H
 
-#include "log.h"
 
 #include <vector>
 

=== modified file 'libcore/vm/VM.h'
--- a/libcore/vm/VM.h   2010-01-18 09:07:18 +0000
+++ b/libcore/vm/VM.h   2010-03-10 16:13:07 +0000
@@ -24,7 +24,6 @@
 #include "gnashconfig.h"
 #endif
 
-#include "smart_ptr.h" 
 #include "GC.h"
 #include "string_table.h"
 #include "SafeStack.h"

=== modified file 'libcore/vm/fn_call.h'
--- a/libcore/vm/fn_call.h      2010-01-25 18:52:20 +0000
+++ b/libcore/vm/fn_call.h      2010-03-10 16:13:07 +0000
@@ -24,6 +24,7 @@
 #include "smart_ptr.h"
 #include "as_value.h"
 #include "VM.h"
+#include "GnashException.h"
 
 #include <cassert> 
 #include <ostream>

=== modified file 'libcore/vm/with_stack_entry.h'
--- a/libcore/vm/with_stack_entry.h     2010-01-11 06:41:38 +0000
+++ b/libcore/vm/with_stack_entry.h     2010-03-10 16:13:07 +0000
@@ -19,7 +19,6 @@
 #ifndef GNASH_WITH_STACK_ENTRY_H
 #define GNASH_WITH_STACK_ENTRY_H
 
-#include "as_object.h" // for dtor visibility by boost::intrusive_ptr
 #include "smart_ptr.h"
 
 namespace gnash {


reply via email to

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