ICU-3132 change le_bool back to UBool, and uppercase true and false; some lame-o C++ compilers don't implement bool.

X-SVN-Rev: 14040
This commit is contained in:
Eric Mader 2003-12-08 23:00:58 +00:00
parent c68a5bdf67
commit de6431c47d
2 changed files with 6 additions and 6 deletions

View File

@ -370,7 +370,7 @@ public:
*
* @param paragraphLevel is the directionality of the paragraph, as in the UBiDi object.
*
* @param vertical is <code>true</code> if the paragraph should be set vertically.
* @param vertical is <code>TRUE</code> if the paragraph should be set vertically.
*
* @param status will be set to any error code encountered during construction.
*
@ -412,7 +412,7 @@ public:
*
* @param fontRuns is a pointer to a <code>FontRuns</code> object representing the font runs.
*
* @return <code>true</code> if the paragraph contains complex text.
* @return <code>TRUE</code> if the paragraph contains complex text.
*
* @draft ICU 2.6
*/
@ -426,7 +426,7 @@ public:
*
* @param count is the number of characters in the paragraph.
*
* @return <code>true</code> if any of the text requires complex processing.
* @return <code>TRUE</code> if any of the text requires complex processing.
*
* @draft ICU 2.6
*/

View File

@ -204,19 +204,19 @@ private:
};
inline RunArray::RunArray()
: UObject(), fClientArrays(false), fLimits(NULL), fCount(0), fCapacity(0)
: UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
{
// nothing else to do...
}
inline RunArray::RunArray(const RunArray & /*other*/)
: UObject(), fClientArrays(false), fLimits(NULL), fCount(0), fCapacity(0)
: UObject(), fClientArrays(FALSE), fLimits(NULL), fCount(0), fCapacity(0)
{
// nothing else to do...
}
inline RunArray::RunArray(const le_int32 *limits, le_int32 count)
: UObject(), fClientArrays(true), fLimits(limits), fCount(count), fCapacity(count)
: UObject(), fClientArrays(TRUE), fLimits(limits), fCount(count), fCapacity(count)
{
// nothing else to do...
}