gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/movie_root.cpp server/as...


From: Zou Lunkai
Subject: [Gnash-commit] gnash ChangeLog server/movie_root.cpp server/as...
Date: Mon, 05 Feb 2007 07:18:30 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Zou Lunkai <zoulunkai>  07/02/05 07:18:30

Modified files:
        .              : ChangeLog 
        server         : movie_root.cpp 
        server/asobj   : xml.cpp xmlnode.cpp 

Log message:
        typos, get rid of unnecessary warnings with vc8 compiler

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2247&r2=1.2248
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_root.cpp?cvsroot=gnash&r1=1.36&r2=1.37
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/xml.cpp?cvsroot=gnash&r1=1.14&r2=1.15
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/xmlnode.cpp?cvsroot=gnash&r1=1.8&r2=1.9

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2247
retrieving revision 1.2248
diff -u -b -r1.2247 -r1.2248
--- ChangeLog   5 Feb 2007 00:06:51 -0000       1.2247
+++ ChangeLog   5 Feb 2007 07:18:29 -0000       1.2248
@@ -1,3 +1,9 @@
+2007-02-05 Zou Lunkai <address@hidden>
+
+       * server/movie_root.cpp, server/asobj/xml.cpp,
+         server/asobj/xmlnode.cpp.
+         typos, get rid of unnecessary warnings with vc8 compiler 
+         
 2007-02-05 Markus Gothe <address@hidden>
 
        * macros/pthreads.m4: Fixed a quirky LIBS/CFLAGS-bug.

Index: server/movie_root.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/movie_root.cpp,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- server/movie_root.cpp       31 Jan 2007 16:42:42 -0000      1.36
+++ server/movie_root.cpp       5 Feb 2007 07:18:30 -0000       1.37
@@ -419,7 +419,7 @@
 }
        
 void
-movie_root::do_something(void */* timer */)
+movie_root::do_something(void * /* timer */)
 {
     log_msg("FIXME: %s: unimplemented\n", __FUNCTION__);
 }

Index: server/asobj/xml.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/xml.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- server/asobj/xml.cpp        30 Jan 2007 09:54:22 -0000      1.14
+++ server/asobj/xml.cpp        5 Feb 2007 07:18:30 -0000       1.15
@@ -14,7 +14,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: xml.cpp,v 1.14 2007/01/30 09:54:22 strk Exp $ */
+/* $Id: xml.cpp,v 1.15 2007/02/05 07:18:30 zoulunkai Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -114,7 +114,7 @@
     parseXML(xml_in);
 }
 
-XML::XML(struct node */* childNode */)
+XML::XML(struct node * /* childNode */)
        :
        as_object(getXMLInterface()),
        _loaded(false), 
@@ -168,7 +168,7 @@
 }
 
 void
-XML::nodeNameSet(const char */*name */)
+XML::nodeNameSet(const char * /*name */)
 {
   if (!_nodes) {
     _nodes = new XMLNode;
@@ -180,7 +180,7 @@
 }
 
 void
-XML::nodeValueSet(const char */* value */)
+XML::nodeValueSet(const char * /* value */)
 {
   if (!_nodes) {
     _nodes = new XMLNode;
@@ -442,7 +442,7 @@
 }
 
 void
-XML::cleanupStackFrames(XMLNode */* xml */)
+XML::cleanupStackFrames(XMLNode * /* xml */)
 {
     GNASH_REPORT_FUNCTION;
 }
@@ -542,7 +542,7 @@
 /// If multiple calls are made to set the same header name, each
 /// successive value replaces the value set in the previous call.
 void
-XML::addRequestHeader(const char */* name */, const char */* value */)
+XML::addRequestHeader(const char * /* name */, const char * /* value */)
 {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
@@ -600,7 +600,7 @@
 /// the XML.createTextNode() method are the constructor methods for
 /// creating nodes for an XML object. 
 XMLNode *
-XML::createElement(const char */* name */)
+XML::createElement(const char * /* name */)
 {
     log_msg("%s:unimplemented \n", __FUNCTION__);
     return (XMLNode*)0;
@@ -615,7 +615,7 @@
 /// XML.createElement() method are the constructor methods for
 /// creating nodes for an XML object.
 XMLNode *
-XML::createTextNode(const char */* name */)
+XML::createTextNode(const char * /* name */)
 {
     log_msg("%s:unimplemented \n", __FUNCTION__);
     return (XMLNode*)0;
@@ -629,7 +629,7 @@
 /// method. If beforeNode is not a child of my_xml, the insertion
 /// fails.
 void
-XML::insertBefore(XMLNode */* newnode */, XMLNode */* node */)
+XML::insertBefore(XMLNode * /* newnode */, XMLNode * /* node */)
 {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }

Index: server/asobj/xmlnode.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/xmlnode.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- server/asobj/xmlnode.cpp    19 Jan 2007 15:46:50 -0000      1.8
+++ server/asobj/xmlnode.cpp    5 Feb 2007 07:18:30 -0000       1.9
@@ -18,7 +18,7 @@
 //
 //
 
-/* $Id: xmlnode.cpp,v 1.8 2007/01/19 15:46:50 strk Exp $ */
+/* $Id: xmlnode.cpp,v 1.9 2007/02/05 07:18:30 zoulunkai Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -253,7 +253,7 @@
 /// method. If beforeNode is not a child of my_xml, the insertion
 /// fails.
 void
-XMLNode::insertBefore(XMLNode */* newnode */, XMLNode */* node */)
+XMLNode::insertBefore(XMLNode * /* newnode */, XMLNode * /* node */)
 {
     log_msg("%s: unimplemented \n", __PRETTY_FUNCTION__);
 }




reply via email to

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