dbertoni 02/01/04 14:32:30
Modified: c/src/ICUBridge ICUBridge.cpp
Log:
Fixed bogus class name.
Revision Changes Path
1.15 +6 -6 xml-xalan/c/src/ICUBridge/ICUBridge.cpp
Index: ICUBridge.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/ICUBridge/ICUBridge.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ICUBridge.cpp 4 Jan 2002 19:12:43 -0000 1.14
+++ ICUBridge.cpp 4 Jan 2002 22:32:30 -0000 1.15
@@ -133,14 +133,14 @@
doCopyData(theString, theLength, theBuffer);
#if U_SIZEOF_WCHAR_T==2
- return ICUUnicodeString((wchar_t*)&theBuffer[0],
theLength);
+ return UnicodeString((wchar_t*)&theBuffer[0],
theLength);
#else
- return ICUUnicodeString(&theBuffer[0], theLength);
+ return UnicodeString(&theBuffer[0], theLength);
#endif
}
else
{
- // Create a buffer to copy out the ICUUnicodeString
data...
+ // Create a buffer to copy out the UnicodeString data...
UCharVectorType theBuffer;
// Resize the buffer appropriately...
@@ -154,7 +154,7 @@
assert(theLength == theBuffer.size());
- return ICUUnicodeString(&theBuffer[0], theLength);
+ return UnicodeString(&theBuffer[0], theLength);
}
#else
return UnicodeString(theString, length(theString));
@@ -208,7 +208,7 @@
}
else
{
- // Create a buffer to copy out the ICUUnicodeString data...
+ // Create a buffer to copy out the UnicodeString data...
UCharVectorType theBuffer;
// Resize the buffer appropriately...
@@ -260,7 +260,7 @@
typedef std::vector<UChar> UCharVectorType;
#endif
- // Create a buffer to copy out the ICUUnicodeString data...
+ // Create a buffer to copy out the UnicodeString data...
UCharVectorType theBuffer;
// Resize the buffer appropriately...
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]