ICU-3333 Fix for Solaris

X-SVN-Rev: 18255
This commit is contained in:
George Rhoten 2005-07-15 16:18:44 +00:00
parent f34b0d205d
commit f57f84234d
2 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ IdnaConfTest::~IdnaConfTest(){
/* this function is modified from RBBITest::ReadAndConvertFile()
*
*/
bool IdnaConfTest::ReadAndConvertFile(){
UBool IdnaConfTest::ReadAndConvertFile(){
char * source = NULL;
size_t source_len;
@ -152,7 +152,7 @@ int IdnaConfTest::isNewlineMark(){
* lines from the physical lines.
*
*/
bool IdnaConfTest::ReadOneLine(UnicodeString& buf){
UBool IdnaConfTest::ReadOneLine(UnicodeString& buf){
if ( !(curOffset < len) ) return false; // stream end
static const UChar BACKSLASH = 0x5c;

View File

@ -30,9 +30,9 @@ private:
int len ;
int curOffset;
bool ReadAndConvertFile();
UBool ReadAndConvertFile();
int isNewlineMark();
bool ReadOneLine(UnicodeString&);
UBool ReadOneLine(UnicodeString&);
// for parsing one test record
UnicodeString id; // for debug & error output