dbertoni 01/09/14 13:56:46
Modified: c/src/ICUBridge FunctionICUFormatNumber.cpp
FunctionICUFormatNumber.hpp
Log:
Changes for new signatures.
Revision Changes Path
1.7 +6 -3 xml-xalan/c/src/ICUBridge/FunctionICUFormatNumber.cpp
Index: FunctionICUFormatNumber.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/ICUBridge/FunctionICUFormatNumber.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- FunctionICUFormatNumber.cpp 2001/06/15 21:46:52 1.6
+++ FunctionICUFormatNumber.cpp 2001/09/14 20:56:46 1.7
@@ -123,7 +123,8 @@
double
theNumber,
const XalanDOMString& thePattern,
const XalanDecimalFormatSymbols* theDFS,
- XalanDOMString&
theResult)
+ XalanDOMString&
theResult,
+ const Locator*
locator) const
{
unsigned long theResultCode =
ICUBridge::FormatNumber(
@@ -138,7 +139,8 @@
XALAN_STATIC_UCODE_STRING("Warning! ICUBridge::FormatNumber
failed. (") +
UnsignedLongToDOMString(theResultCode) +
XALAN_STATIC_UCODE_STRING(")."),
- context);
+ context,
+ locator);
FunctionFormatNumber::doFormat(
executionContext,
@@ -146,6 +148,7 @@
theNumber,
thePattern,
theDFS,
- theResult);
+ theResult,
+ locator);
}
}
1.3 +2 -1 xml-xalan/c/src/ICUBridge/FunctionICUFormatNumber.hpp
Index: FunctionICUFormatNumber.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/ICUBridge/FunctionICUFormatNumber.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FunctionICUFormatNumber.hpp 2001/06/15 21:46:52 1.2
+++ FunctionICUFormatNumber.hpp 2001/09/14 20:56:46 1.3
@@ -106,7 +106,8 @@
double
theNumber,
const XalanDOMString& thePattern,
const XalanDecimalFormatSymbols* theDFS,
- XalanDOMString&
theResult);
+ XalanDOMString&
theResult,
+ const Locator*
locator) const;
private:
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]