mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-1230 Deprecate wchar_t APIs. No code change.
X-SVN-Rev: 5897
This commit is contained in:
parent
4502c7670c
commit
ece4a93414
2 changed files with 9 additions and 1 deletions
|
@ -189,6 +189,11 @@ public:
|
|||
ResourceBundle( const UnicodeString& path,
|
||||
UErrorCode& err);
|
||||
ResourceBundle(UErrorCode &err);
|
||||
/**
|
||||
* Constructs a ResourceBundle
|
||||
*
|
||||
* @deprecated Remove after Aug 2002
|
||||
*/
|
||||
ResourceBundle( const wchar_t* path,
|
||||
const Locale& locale,
|
||||
UErrorCode& err);
|
||||
|
@ -419,6 +424,9 @@ public:
|
|||
private:
|
||||
UResourceBundle *resource;
|
||||
void constructForLocale(const UnicodeString& path, const Locale& locale, UErrorCode& error);
|
||||
/**
|
||||
*@deprecated Remove after Aug 2002
|
||||
*/
|
||||
void constructForLocale(const wchar_t* path, const Locale& locale, UErrorCode& error);
|
||||
Locale fRealLocale;
|
||||
};
|
||||
|
|
|
@ -235,7 +235,7 @@ U_CAPI UResourceBundle* U_EXPORT2 ures_open(const char* path, /* NULL if n
|
|||
*@param status: fills in the outgoing error code.
|
||||
*@see ures_close
|
||||
*@return : a newly allocated resource bundle.
|
||||
*@draft
|
||||
*@deprecate remove after Aug 2002
|
||||
*/
|
||||
U_CAPI UResourceBundle* U_EXPORT2 ures_openW(const wchar_t* path,
|
||||
const char* locale,
|
||||
|
|
Loading…
Add table
Reference in a new issue