neilg       2004/02/15 20:02:34

  Modified:    c/src/xercesc/framework BinOutputStream.hpp
               c/src/xercesc/internal BinMemOutputStream.cpp
                        BinMemOutputStream.hpp BinFileOutputStream.cpp
                        BinFileOutputStream.hpp
  Log:
  fix for bug 26936
  
  Revision  Changes    Path
  1.3       +6 -3      xml-xerces/c/src/xercesc/framework/BinOutputStream.hpp
  
  Index: BinOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/BinOutputStream.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BinOutputStream.hpp       16 Dec 2003 17:17:25 -0000      1.2
  +++ BinOutputStream.hpp       16 Feb 2004 04:02:34 -0000      1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.3  2004/02/16 04:02:34  neilg
  + * fix for bug 26936
  + *
    * Revision 1.2  2003/12/16 17:17:25  peiyongz
    * typo fixed
    *
  @@ -88,7 +91,7 @@
   
       virtual void writeBytes
       (
  -                XMLByte* const      toGo
  +          const XMLByte* const      toGo
           , const unsigned int        maxToWrite
       ) = 0;
   
  
  
  
  1.3       +5 -2      xml-xerces/c/src/xercesc/internal/BinMemOutputStream.cpp
  
  Index: BinMemOutputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/BinMemOutputStream.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BinMemOutputStream.cpp    17 Dec 2003 00:01:44 -0000      1.2
  +++ BinMemOutputStream.cpp    16 Feb 2004 04:02:34 -0000      1.3
  @@ -57,6 +57,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.3  2004/02/16 04:02:34  neilg
  + * fix for bug 26936
  + *
    * Revision 1.2  2003/12/17 00:01:44  peiyongz
    * getSize()
    *
  @@ -94,7 +97,7 @@
       fMemoryManager->deallocate(fDataBuf);
   }
   
  -void BinMemOutputStream::writeBytes(       XMLByte*     const      toGo
  +void BinMemOutputStream::writeBytes( const XMLByte*     const      toGo
                                      , const unsigned int            maxToWrite)
   {
   
  
  
  
  1.2       +6 -3      xml-xerces/c/src/xercesc/internal/BinMemOutputStream.hpp
  
  Index: BinMemOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/BinMemOutputStream.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BinMemOutputStream.hpp    16 Dec 2003 16:56:51 -0000      1.1
  +++ BinMemOutputStream.hpp    16 Feb 2004 04:02:34 -0000      1.2
  @@ -57,6 +57,9 @@
   /*
    * $Id$
    * $Log$
  + * Revision 1.2  2004/02/16 04:02:34  neilg
  + * fix for bug 26936
  + *
    * Revision 1.1  2003/12/16 16:56:51  peiyongz
    * BinMemOutputStream
    *
  @@ -93,7 +96,7 @@
   
       virtual void writeBytes
       (
  -            XMLByte*     const      toGo
  +      const XMLByte*     const      toGo
       , const unsigned int            maxToWrite
       ) ;
   
  
  
  
  1.3       +7 -3      xml-xerces/c/src/xercesc/internal/BinFileOutputStream.cpp
  
  Index: BinFileOutputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/BinFileOutputStream.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BinFileOutputStream.cpp   17 Dec 2003 13:58:02 -0000      1.2
  +++ BinFileOutputStream.cpp   16 Feb 2004 04:02:34 -0000      1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.3  2004/02/16 04:02:34  neilg
  + * fix for bug 26936
  + *
    * Revision 1.2  2003/12/17 13:58:02  cargilld
    * Platform update for memory management so that the static memory manager (one
    * used to call Initialize) is only for static data.
  @@ -137,7 +140,7 @@
   }
   
   
  -void BinFileOutputStream::writeBytes(       XMLByte* const  toGo
  +void BinFileOutputStream::writeBytes( const XMLByte* const  toGo
                                       , const unsigned int    maxToWrite)
   {
       //
  
  
  
  1.4       +6 -3      xml-xerces/c/src/xercesc/internal/BinFileOutputStream.hpp
  
  Index: BinFileOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/BinFileOutputStream.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BinFileOutputStream.hpp   29 Jan 2004 11:46:30 -0000      1.3
  +++ BinFileOutputStream.hpp   16 Feb 2004 04:02:34 -0000      1.4
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.4  2004/02/16 04:02:34  neilg
  + * fix for bug 26936
  + *
    * Revision 1.3  2004/01/29 11:46:30  cargilld
    * Code cleanup changes to get rid of various compiler diagnostic messages.
    *
  @@ -113,7 +116,7 @@
   
       virtual void writeBytes
       (
  -                XMLByte* const      toGo
  +          const XMLByte* const      toGo
           , const unsigned int        maxToWrite
       );
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to