dbertoni 2002/11/06 16:34:31
Modified: c/src/PlatformSupport DOMStringHelper.cpp
Log:
Removed unnecessary cast.
Revision Changes Path
1.76 +1 -1 xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp
Index: DOMStringHelper.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- DOMStringHelper.cpp 23 Sep 2002 21:30:33 -0000 1.75
+++ DOMStringHelper.cpp 7 Nov 2002 00:34:31 -0000 1.76
@@ -630,7 +630,7 @@
const XalanDOMChar* const theBuffer =
c_wstr(theInputString);
assert(theBuffer != 0);
- return TransformString(theBuffer, unsigned(theStringLength),
theFunction);
+ return TransformString(theBuffer, theStringLength, theFunction);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]