gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libmedia/AudioDecoderNellymoser...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog libmedia/AudioDecoderNellymoser...
Date: Wed, 27 Feb 2008 08:51:55 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/02/27 08:51:55

Modified files:
        .              : ChangeLog 
        libmedia       : AudioDecoderNellymoser.cpp 
        gui            : fb.cpp gnash.cpp sdl_agg_glue.cpp 

Log message:
        Use standard C++ headers.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5748&r2=1.5749
http://cvs.savannah.gnu.org/viewcvs/gnash/libmedia/AudioDecoderNellymoser.cpp?cvsroot=gnash&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/fb.cpp?cvsroot=gnash&r1=1.49&r2=1.50
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gnash.cpp?cvsroot=gnash&r1=1.102&r2=1.103
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/sdl_agg_glue.cpp?cvsroot=gnash&r1=1.19&r2=1.20

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5748
retrieving revision 1.5749
diff -u -b -r1.5748 -r1.5749
--- ChangeLog   27 Feb 2008 08:48:14 -0000      1.5748
+++ ChangeLog   27 Feb 2008 08:51:54 -0000      1.5749
@@ -1,3 +1,8 @@
+2008-02-27 Benjamin Wolsey <address@hidden>
+
+       * gui/fb.cpp, gui/sdl_agg_glue.cpp, gui/gnash.cpp:
+       * libmedia/AudioDecoderNellymoser.cpp: use standard C++ headers
+
 2008-02-27 Sandro Santilli <address@hidden>
 
        * plugin/plugin.cpp: don't force verbosity, the config file can

Index: libmedia/AudioDecoderNellymoser.cpp
===================================================================
RCS file: /sources/gnash/gnash/libmedia/AudioDecoderNellymoser.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- libmedia/AudioDecoderNellymoser.cpp 8 Feb 2008 15:27:30 -0000       1.8
+++ libmedia/AudioDecoderNellymoser.cpp 27 Feb 2008 08:51:54 -0000      1.9
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-// $Id: AudioDecoderNellymoser.cpp,v 1.8 2008/02/08 15:27:30 bjacques Exp $
+// $Id: AudioDecoderNellymoser.cpp,v 1.9 2008/02/27 08:51:54 bwy Exp $
 
 // This file incorporates work covered by the following copyright and 
permission
 // notice:
@@ -49,9 +49,9 @@
 
 #include "AudioDecoderNellymoser.h"
 #include "utility.h"
-#include <stdlib.h>
-#include <time.h>
-#include <math.h>
+#include <cstdlib>
+#include <ctime>
+#include <cmath>
 
 namespace gnash {
 namespace media {

Index: gui/fb.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/fb.cpp,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- gui/fb.cpp  19 Feb 2008 19:20:49 -0000      1.49
+++ gui/fb.cpp  27 Feb 2008 08:51:54 -0000      1.50
@@ -72,14 +72,14 @@
 #include <sys/stat.h>
 #include <sys/time.h>
 #include <fcntl.h>
-#include <errno.h>
+#include <cerrno>
 #include <sys/ioctl.h>
 #include <sys/mman.h>
 #include <linux/fb.h>
 #include <linux/kd.h>
 #include <linux/vt.h>
 #include <unistd.h>
-#include <signal.h>
+#include <csignal>
 
 
 #include "gnash.h"

Index: gui/gnash.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gnash.cpp,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -b -r1.102 -r1.103
--- gui/gnash.cpp       22 Feb 2008 18:14:06 -0000      1.102
+++ gui/gnash.cpp       27 Feb 2008 08:51:55 -0000      1.103
@@ -1,4 +1,3 @@
-
 // gnash.cpp:  Main routine for top-level flash player, for Gnash.
 // 
 //   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@@ -58,7 +57,7 @@
 #include <iostream>
 
 #ifdef ENABLE_NLS
-# include <locale.h>
+# include <locale>
 #endif
 
 #ifdef GUI_ALP

Index: gui/sdl_agg_glue.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/sdl_agg_glue.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- gui/sdl_agg_glue.cpp        19 Feb 2008 19:20:49 -0000      1.19
+++ gui/sdl_agg_glue.cpp        27 Feb 2008 08:51:55 -0000      1.20
@@ -21,7 +21,7 @@
 #include "log.h"
 #include "render_handler.h"
 #include "render_handler_agg.h"
-#include <errno.h>
+#include <cerrno>
 #include <ostream>
 
 using namespace std;




reply via email to

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