You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by am...@apache.org on 2012/10/08 17:45:35 UTC

svn commit: r1395625 - /xerces/c/trunk/src/xercesc/util/XMLString.cpp

Author: amassari
Date: Mon Oct  8 15:45:34 2012
New Revision: 1395625

URL: http://svn.apache.org/viewvc?rev=1395625&view=rev
Log:
Be consistent when converting a number to text ('e' was lowercase, 'A' to 'F' were uppercase)

Modified:
    xerces/c/trunk/src/xercesc/util/XMLString.cpp

Modified: xerces/c/trunk/src/xercesc/util/XMLString.cpp
URL: http://svn.apache.org/viewvc/xerces/c/trunk/src/xercesc/util/XMLString.cpp?rev=1395625&r1=1395624&r2=1395625&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/util/XMLString.cpp (original)
+++ xerces/c/trunk/src/xercesc/util/XMLString.cpp Mon Oct  8 15:45:34 2012
@@ -802,7 +802,7 @@ void XMLString::sizeToText(  const  XMLS
     {
             chDigit_0, chDigit_1, chDigit_2, chDigit_3, chDigit_4, chDigit_5
         ,   chDigit_6, chDigit_7, chDigit_8, chDigit_9, chLatin_A, chLatin_B
-        ,   chLatin_C, chLatin_D, chLatin_e, chLatin_F
+        ,   chLatin_C, chLatin_D, chLatin_E, chLatin_F
     };
 
     if (!maxChars)
@@ -893,7 +893,7 @@ void XMLString::binToText(  const   unsi
     {
             chDigit_0, chDigit_1, chDigit_2, chDigit_3, chDigit_4, chDigit_5
         ,   chDigit_6, chDigit_7, chDigit_8, chDigit_9, chLatin_A, chLatin_B
-        ,   chLatin_C, chLatin_D, chLatin_e, chLatin_F
+        ,   chLatin_C, chLatin_D, chLatin_E, chLatin_F
     };
 
     if (!maxChars)



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org