diff options
Diffstat (limited to 'sal/qa/rtl_strings')
-rw-r--r-- | sal/qa/rtl_strings/rtl_OString.cxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sal/qa/rtl_strings/rtl_OString.cxx b/sal/qa/rtl_strings/rtl_OString.cxx index b5fc7a4a52be..357f8d23d4fc 100644 --- a/sal/qa/rtl_strings/rtl_OString.cxx +++ b/sal/qa/rtl_strings/rtl_OString.cxx @@ -2,9 +2,9 @@ * * $RCSfile: rtl_OString.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2004-03-19 14:57:08 $ + * last change: $Author: pjunck $ $Date: 2004-11-02 10:30:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2781,10 +2781,12 @@ extern "C" void /* sal_Bool */ SAL_CALL test_rtl_OString_toChar( {"0", '0',new OString("0")}, {"-", '-',new OString("-")}, {"_", '_',new OString("_")}, - {"", '',new OString("")}, - { "", '',new OString("")}, - {"", '',new OString("")}, - {"", '',new OString("")}, + +// TODO: may be UTF-8 values +// {"06", '06',new OString("06")}, +// { "07", '07',new OString("07")}, +// {"00", '00',new OString("00")}, +// {"06", '06',new OString("06")}, {"\n", '\n',new OString("\n")}, {"\'", '\'',new OString("\'")}, {"\"", '\"',new OString("\"")}, |