gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libbase/tu_file.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog libbase/tu_file.cpp
Date: Sat, 10 Feb 2007 17:54:06 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  07/02/10 17:54:06

Modified files:
        .              : ChangeLog 
        libbase        : tu_file.cpp 

Log message:
        namespacing

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2304&r2=1.2305
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/tu_file.cpp?cvsroot=gnash&r1=1.10&r2=1.11

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2304
retrieving revision 1.2305
diff -u -b -r1.2304 -r1.2305
--- ChangeLog   10 Feb 2007 17:22:47 -0000      1.2304
+++ ChangeLog   10 Feb 2007 17:54:06 -0000      1.2305
@@ -3,6 +3,7 @@
        * server/asobj/Math.cpp: using namespace std;
        * server/asobj/Number.cpp: using namespace std;
        * libbase/tu_math.h: using namespace std;
+       * libbase/tu_file.cpp: namespacing.
 
 2007-02-10 Udo Giacomozzi <address@hidden>
 

Index: libbase/tu_file.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/tu_file.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- libbase/tu_file.cpp 14 Sep 2006 05:02:11 -0000      1.10
+++ libbase/tu_file.cpp 10 Feb 2007 17:54:06 -0000      1.11
@@ -18,6 +18,7 @@
 
 using namespace gnash;
 
+namespace gnash {
 static int
 std_read_func(void* dst, int bytes, void* appdata) 
 // Return the number of bytes actually read.  EOF or an error would
@@ -112,10 +113,9 @@
     int                m_position;
     
     filebuf()
-       :
-       m_position(0),
-       m_read_only(false)
        {
+               m_position = 0; 
+               m_read_only = false;
        }
     
     filebuf(int size, void* data)
@@ -283,7 +283,7 @@
     
     return 0;
 }
-
+}
 
 //
 // generic functionality




reply via email to

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