@@ -56,7 +56,7 @@ CodePointBreakIterator& CodePointBreakIterator::operator=(const CodePointBreakIt
56
56
return *this ;
57
57
}
58
58
59
- this ->fText = utext_clone (this ->fText , that.fText , FALSE , TRUE , &uec);
59
+ this ->fText = utext_clone (this ->fText , that.fText , false , true , &uec);
60
60
61
61
// don't bother copying the character iterator, getText() is deprecated
62
62
clearCurrentCharIter ();
@@ -76,17 +76,17 @@ CodePointBreakIterator::~CodePointBreakIterator()
76
76
UBool CodePointBreakIterator::operator ==(const BreakIterator& that) const
77
77
{
78
78
if (typeid (*this ) != typeid (that)) {
79
- return FALSE ;
79
+ return false ;
80
80
}
81
81
82
82
const CodePointBreakIterator& that2 =
83
83
static_cast <const CodePointBreakIterator&>(that);
84
84
85
85
if (!utext_equals (this ->fText , that2.fText )) {
86
- return FALSE ;
86
+ return false ;
87
87
}
88
88
89
- return TRUE ;
89
+ return true ;
90
90
}
91
91
92
92
CodePointBreakIterator* CodePointBreakIterator::clone (void ) const
@@ -107,7 +107,7 @@ CharacterIterator& CodePointBreakIterator::getText(void) const
107
107
108
108
UText *CodePointBreakIterator::getUText (UText *fillIn, UErrorCode &status) const
109
109
{
110
- return utext_clone (fillIn, this ->fText , FALSE , TRUE , &status);
110
+ return utext_clone (fillIn, this ->fText , false , true , &status);
111
111
}
112
112
113
113
void CodePointBreakIterator::setText (const UnicodeString &text)
@@ -126,7 +126,7 @@ void CodePointBreakIterator::setText(UText *text, UErrorCode &status)
126
126
return ;
127
127
}
128
128
129
- this ->fText = utext_clone (this ->fText , text, FALSE , TRUE , &status);
129
+ this ->fText = utext_clone (this ->fText , text, false , true , &status);
130
130
131
131
clearCurrentCharIter ();
132
132
}
@@ -278,7 +278,7 @@ CodePointBreakIterator &CodePointBreakIterator::refreshInputText(UText *input, U
278
278
}
279
279
280
280
int64_t pos = utext_getNativeIndex (this ->fText );
281
- this ->fText = utext_clone (this ->fText , input, FALSE , TRUE , &status);
281
+ this ->fText = utext_clone (this ->fText , input, false , true , &status);
282
282
if (U_FAILURE (status)) {
283
283
return *this ;
284
284
}
0 commit comments