You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/01/08 19:14:18 UTC

cvs commit: xml-xalan/c/src/PlatformSupport NamedNodeMapAttributeList.cpp

dbertoni    01/01/08 10:14:18

  Modified:    c/src/PlatformSupport NamedNodeMapAttributeList.cpp
  Log:
  Removed use of XalanDOMCharVectorType.
  
  Revision  Changes    Path
  1.11      +1 -4      xml-xalan/c/src/PlatformSupport/NamedNodeMapAttributeList.cpp
  
  Index: NamedNodeMapAttributeList.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/NamedNodeMapAttributeList.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- NamedNodeMapAttributeList.cpp	2000/11/02 01:45:36	1.10
  +++ NamedNodeMapAttributeList.cpp	2001/01/08 18:14:18	1.11
  @@ -183,10 +183,7 @@
   const XMLCh* 
   NamedNodeMapAttributeList::getValue(const char* const name) const
   {
  -	const XalanDOMCharVectorType	theName =
  -		MakeXalanDOMCharVector(name);
  -
  -	return getValue(theName.front());
  +	return getValue(c_wstr(TranscodeFromLocalCodePage(name)));
   }