gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/Boolean.cpp server/Camer...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/Boolean.cpp server/Camer...
Date: Sat, 24 Jun 2006 15:43:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/06/24 15:43:43

Modified files:
        .              : ChangeLog 
        server         : Boolean.cpp Camera.cpp Color.cpp 
                         ContextMenu.cpp CustomActions.cpp Date.cpp 
                         Error.cpp 

Log message:
        removed unused parameter warnings.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.427&r2=1.428
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Boolean.cpp?cvsroot=gnash&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Camera.cpp?cvsroot=gnash&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Color.cpp?cvsroot=gnash&r1=1.6&r2=1.7
http://cvs.savannah.gnu.org/viewcvs/gnash/server/ContextMenu.cpp?cvsroot=gnash&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/gnash/server/CustomActions.cpp?cvsroot=gnash&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Date.cpp?cvsroot=gnash&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Error.cpp?cvsroot=gnash&r1=1.5&r2=1.6

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.427
retrieving revision 1.428
diff -u -b -r1.427 -r1.428
--- ChangeLog   21 Jun 2006 23:06:41 -0000      1.427
+++ ChangeLog   24 Jun 2006 15:43:40 -0000      1.428
@@ -1,3 +1,10 @@
+2006-06-24 Sandro Santilli <address@hidden>
+
+       * server/Boolean.cpp, server/Camera.cpp, server/Color.cpp,
+       server/ContextMenu.cpp, server/CustomActions.cpp
+       server/Date.cpp, server/Error.cpp: removed unused parameter
+       warnings.
+
 2006-06-22 Sandro Santilli <address@hidden>
 
        * server/Function.cpp, server/MovieClipLoader.cpp, server/action.cpp,

Index: server/Boolean.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/Boolean.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- server/Boolean.cpp  20 May 2006 23:49:33 -0000      1.5
+++ server/Boolean.cpp  24 Jun 2006 15:43:41 -0000      1.6
@@ -74,10 +74,10 @@
 
     fn.result->set_as_object(boolean_obj);
 }
-void boolean_tostring(const fn_call& fn) {
+void boolean_tostring(const fn_call& /* fn */) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void boolean_valueof(const fn_call& fn) {
+void boolean_valueof(const fn_call& /* fn */) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 

Index: server/Camera.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/Camera.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- server/Camera.cpp   20 May 2006 23:49:33 -0000      1.5
+++ server/Camera.cpp   24 Jun 2006 15:43:41 -0000      1.6
@@ -88,16 +88,16 @@
 
     fn.result->set_as_object(camera_obj);
 }
-void camera_get(const fn_call& fn) {
+void camera_get(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void camera_setmode(const fn_call& fn) {
+void camera_setmode(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void camera_setmotionlevel(const fn_call& fn) {
+void camera_setmotionlevel(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void camera_setquality(const fn_call& fn) {
+void camera_setquality(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 

Index: server/Color.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/Color.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- server/Color.cpp    20 May 2006 23:49:33 -0000      1.6
+++ server/Color.cpp    24 Jun 2006 15:43:41 -0000      1.7
@@ -88,16 +88,16 @@
 
     fn.result->set_as_object(color_obj);
 }
-void color_getrgb(const fn_call& fn) {
+void color_getrgb(const fn_call& /*fn*/) {
     log_warning("%s: unimplemented \n", __PRETTY_FUNCTION__);
 }
-void color_gettransform(const fn_call& fn) {
+void color_gettransform(const fn_call& /*fn*/) {
     log_warning("%s: unimplemented \n", __PRETTY_FUNCTION__);
 }
-void color_setrgb(const fn_call& fn) {
+void color_setrgb(const fn_call& /*fn*/) {
     log_warning("%s: unimplemented \n", __PRETTY_FUNCTION__);
 }
-void color_settransform(const fn_call& fn) {
+void color_settransform(const fn_call& /*fn*/) {
     log_warning("%s: unimplemented \n", __PRETTY_FUNCTION__);
 }
 

Index: server/ContextMenu.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/ContextMenu.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- server/ContextMenu.cpp      20 May 2006 23:49:33 -0000      1.5
+++ server/ContextMenu.cpp      24 Jun 2006 15:43:41 -0000      1.6
@@ -73,10 +73,10 @@
 
     fn.result->set_as_object(contextmenu_obj);
 }
-void contextmenu_copy(const fn_call& fn) {
+void contextmenu_copy(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void contextmenu_hidebuiltinitems(const fn_call& fn) {
+void contextmenu_hidebuiltinitems(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 

Index: server/CustomActions.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/CustomActions.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- server/CustomActions.cpp    20 May 2006 23:49:33 -0000      1.5
+++ server/CustomActions.cpp    24 Jun 2006 15:43:41 -0000      1.6
@@ -88,16 +88,16 @@
 
     fn.result->set_as_object(customactions_obj);
 }
-void customactions_get(const fn_call& fn) {
+void customactions_get(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void customactions_install(const fn_call& fn) {
+void customactions_install(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void customactions_list(const fn_call& fn) {
+void customactions_list(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
-void customactions_uninstall(const fn_call& fn) {
+void customactions_uninstall(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 

Index: server/Date.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/Date.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- server/Date.cpp     8 Jun 2006 04:16:19 -0000       1.13
+++ server/Date.cpp     24 Jun 2006 15:43:41 -0000      1.14
@@ -578,7 +578,7 @@
        date->obj.Normalize();
        fn.result->set_double(date->obj.getTime());
 }
-void date_settime(const fn_call& fn) {
+void date_settime(const fn_call& /*fn*/) {
        log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 void date_setutcdate(const fn_call& fn) {
@@ -723,7 +723,7 @@
 
        fn.result->set_string((char *)&buffer);
 }
-void date_utc(const fn_call& fn) {
+void date_utc(const fn_call& /*fn*/) {
        log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 

Index: server/Error.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/Error.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- server/Error.cpp    20 May 2006 23:49:33 -0000      1.5
+++ server/Error.cpp    24 Jun 2006 15:43:41 -0000      1.6
@@ -67,9 +67,9 @@
 
     fn.result->set_as_object(error_obj);
 }
-void error_tostring(const fn_call& fn) {
+void error_tostring(const fn_call& /*fn*/) {
     log_msg("%s:unimplemented \n", __FUNCTION__);
 }
 
-} // end of gnaash namespace
+} // end of gnash namespace
 




reply via email to

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