ICU-3944 fix compilation error

X-SVN-Rev: 17883
This commit is contained in:
Andy Heninger 2005-06-14 01:47:59 +00:00
parent c1516937e6
commit 6493207038
2 changed files with 10 additions and 1 deletions

View File

@ -42,6 +42,7 @@ U_NAMESPACE_END
#include "unicode/locid.h"
#include "unicode/ubrk.h"
#include "unicode/strenum.h"
#include "unicode/utext.h"
U_NAMESPACE_BEGIN
@ -263,6 +264,14 @@ public:
*/
virtual void setText(const UnicodeString &text) = 0;
/**
* Change the text over which this operates. The boundary iteration position is
* reset to the start.
* @param text The UText used to change the text.
* @stable ICU 2.0
*/
//virtual void setText(UText &text) = 0;
/**
* Change the text over which this operates. The text boundary is
* reset to the start.

View File

@ -1196,7 +1196,7 @@ UTextSetup(UText *utxt, int32_t extraSpace, UErrorCode *status);
* @internal
*/
enum {
UTEXT_MAGIC = 0xe45ad82c
UTEXT_MAGIC = 0x345ad82c
};