~ubuntu-branches/ubuntu/precise/xerces-c/precise-security

« back to all changes in this revision

Viewing changes to src/xercesc/util/XMLString.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jay Berkenbilt
  • Date: 2010-02-06 16:46:23 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100206164623-xbntkcs6ks20nboa
Tags: 3.1.0-1
* New upstream release
* Updated standards version to 3.8.4.  No changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 */
17
17
 
18
18
/*
19
 
 * $Id: XMLString.cpp 834826 2009-11-11 10:03:53Z borisk $
 
19
 * $Id: XMLString.cpp 901107 2010-01-20 08:45:02Z borisk $
20
20
 */
21
21
 
22
22
 
1715
1715
//    #xA  Line Feed
1716
1716
//    #x9  TAB
1717
1717
//
1718
 
void XMLString::replaceWS(XMLCh* toConvert
1719
 
                          , MemoryManager* const  manager)
 
1718
void XMLString::replaceWS(XMLCh* toConvert, MemoryManager* const)
1720
1719
{
1721
1720
    // If no string, then its a OK
1722
1721
    if (( !toConvert ) || ( !*toConvert ))
1848
1847
//
1849
1848
// remove whitespace
1850
1849
//
1851
 
void XMLString::removeWS(XMLCh* toConvert
1852
 
                         , MemoryManager* const manager)
 
1850
void XMLString::removeWS(XMLCh* toConvert, MemoryManager* const)
1853
1851
{
1854
1852
    // If no string, then its a failure
1855
1853
    if (( !toConvert ) || ( !*toConvert ))