gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/asobj/ColorMatrixFilter_...


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog server/asobj/ColorMatrixFilter_...
Date: Fri, 14 Sep 2007 01:39:31 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  07/09/14 01:39:31

Modified files:
        .              : ChangeLog 
        server/asobj   : ColorMatrixFilter_as.cpp 
                         ConvolutionFilter_as.cpp 
                         DropShadowFilter_as.cpp GlowFilter_as.cpp 
                         GradientBevelFilter_as.cpp 
                         GradientGlowFilter_as.cpp 

Log message:
        Fixes for compilation with --enable-strict.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4312&r2=1.4313
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/ColorMatrixFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/ConvolutionFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/DropShadowFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/GlowFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/GradientBevelFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/GradientGlowFilter_as.cpp?cvsroot=gnash&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4312
retrieving revision 1.4313
diff -u -b -r1.4312 -r1.4313
--- ChangeLog   14 Sep 2007 01:26:39 -0000      1.4312
+++ ChangeLog   14 Sep 2007 01:39:31 -0000      1.4313
@@ -1,7 +1,12 @@
 2007-09-14 Markus Gothe <address@hidden>
 
        * server/asobj/BevelFilter_as.cpp, server/asobj/BitMapFilter_as.cpp,
-       server/asobj/BlurFilter_as.cpp:
+       server/asobj/BlurFilter_as.cpp, server/asobj/ColorMatrixFilter_as.cpp,
+       server/asobj/ConvolutionFilter_as.cpp,
+       server/asobj/DropShadowFilter_as.cpp, server/asobj/GlowFilter_as.cpp,
+       server/asobj/GradientBevelFilter_as.cpp,
+       server/asobj/GradientGlowFilter_as.cpp
+
        Fixes for compilation with --enable-strict.
 
 2007-09-13 Tomas Groth Christensen <address@hidden>

Index: server/asobj/ColorMatrixFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/ColorMatrixFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/ColorMatrixFilter_as.cpp       29 Aug 2007 03:32:58 -0000      
1.2
+++ server/asobj/ColorMatrixFilter_as.cpp       14 Sep 2007 01:39:31 -0000      
1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: ColorMatrixFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: ColorMatrixFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "ColorMatrixFilter.h"
@@ -30,14 +30,16 @@
 
 class ColorMatrixFilter_as : public as_object, public ColorMatrixFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(matrix);
 
     phelp_i(bitmap_clone);
+
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), ColorMatrixFilter);
+phelp_base_imp((bitmapFilter_interface()), ColorMatrixFilter)
 
 // Filters are purely property based.
 phelp_i_attach_begin

Index: server/asobj/ConvolutionFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/ConvolutionFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/ConvolutionFilter_as.cpp       29 Aug 2007 03:32:58 -0000      
1.2
+++ server/asobj/ConvolutionFilter_as.cpp       14 Sep 2007 01:39:31 -0000      
1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: ConvolutionFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: ConvolutionFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "ConvolutionFilter.h"
@@ -31,7 +31,6 @@
 
 class ConvolutionFilter_as : public as_object, public ConvolutionFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(matrixX);
     phelp_gs(matrixY);
@@ -44,9 +43,11 @@
     phelp_gs(alpha);
 
     phelp_i(bitmap_clone);
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), ConvolutionFilter);
+phelp_base_imp((bitmapFilter_interface()), ConvolutionFilter)
 
 phelp_i_attach_begin
 phelp_i_replace(clone, bitmap_clone);

Index: server/asobj/DropShadowFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/DropShadowFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/DropShadowFilter_as.cpp        29 Aug 2007 03:32:58 -0000      
1.2
+++ server/asobj/DropShadowFilter_as.cpp        14 Sep 2007 01:39:31 -0000      
1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: DropShadowFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: DropShadowFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "DropShadowFilter.h"
@@ -32,7 +32,6 @@
 
 class DropShadowFilter_as : public as_object, public DropShadowFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(distance);
     phelp_gs(angle);
@@ -47,9 +46,12 @@
     phelp_gs(hideObject);
 
     phelp_i(bitmap_clone);
+
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), DropShadowFilter);
+phelp_base_imp((bitmapFilter_interface()), DropShadowFilter)
 
 // Filters are property based.
 phelp_i_attach_begin

Index: server/asobj/GlowFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/GlowFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/GlowFilter_as.cpp      29 Aug 2007 03:32:58 -0000      1.2
+++ server/asobj/GlowFilter_as.cpp      14 Sep 2007 01:39:31 -0000      1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GlowFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GlowFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "GlowFilter.h"
@@ -32,7 +32,6 @@
 
 class GlowFilter_as : public as_object, public GlowFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(color);
     phelp_gs(alpha);
@@ -44,9 +43,11 @@
     phelp_gs(knockout);
 
     phelp_i(bitmap_clone);
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), GlowFilter);
+phelp_base_imp((bitmapFilter_interface()), GlowFilter)
 
 // Filters are property based.
 phelp_i_attach_begin

Index: server/asobj/GradientBevelFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/GradientBevelFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/GradientBevelFilter_as.cpp     29 Aug 2007 03:32:58 -0000      
1.2
+++ server/asobj/GradientBevelFilter_as.cpp     14 Sep 2007 01:39:31 -0000      
1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GradientBevelFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GradientBevelFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "GradientBevelFilter.h"
@@ -33,7 +33,6 @@
 
 class GradientBevelFilter_as : public as_object, public GradientBevelFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(distance);
     phelp_gs(angle);
@@ -48,9 +47,12 @@
     phelp_gs(knockout);
 
     phelp_i(bitmap_clone);
+
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), GradientBevelFilter);
+phelp_base_imp((bitmapFilter_interface()), GradientBevelFilter)
 
 // Filters are purely property based.
 phelp_i_attach_begin

Index: server/asobj/GradientGlowFilter_as.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/GradientGlowFilter_as.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- server/asobj/GradientGlowFilter_as.cpp      29 Aug 2007 03:32:58 -0000      
1.2
+++ server/asobj/GradientGlowFilter_as.cpp      14 Sep 2007 01:39:31 -0000      
1.3
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: GradientGlowFilter_as.cpp,v 1.2 2007/08/29 03:32:58 cmusick Exp $ */
+/* $Id: GradientGlowFilter_as.cpp,v 1.3 2007/09/14 01:39:31 nihilus Exp $ */
 
 #include "as_object.h"
 #include "GradientGlowFilter.h"
@@ -33,7 +33,6 @@
 
 class GradientGlowFilter_as : public as_object, public GradientGlowFilter
 {
-    phelp_base_def;
 public:
     phelp_gs(distance);
     phelp_gs(angle);
@@ -48,9 +47,12 @@
     phelp_gs(knockout);
 
     phelp_i(bitmap_clone);
+
+private:
+    phelp_base_def;
 };
 
-phelp_base_imp((bitmapFilter_interface()), GradientGlowFilter);
+phelp_base_imp((bitmapFilter_interface()), GradientGlowFilter)
 
 // Filters are purely property based.
 phelp_i_attach_begin




reply via email to

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