diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-08-03 00:09:53 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-08-03 00:11:40 +0200 |
commit | 496586a5f5ec9c063d74a4bcec99f77dfdb86286 (patch) | |
tree | 4b089ed3c74844e0994cbb1dbce7ba23fabde74d | |
parent | cc76b5b78604f8d776aedc52694ffed453076d7e (diff) |
2 fixes in OSL_DEBUG part with ByteString
-rw-r--r-- | sc/source/core/data/cell2.cxx | 29 | ||||
-rw-r--r-- | sc/source/filter/starcalc/scflt.cxx | 2 |
2 files changed, 16 insertions, 15 deletions
diff --git a/sc/source/core/data/cell2.cxx b/sc/source/core/data/cell2.cxx index 5c657e6051ce..231cb833cfd3 100644 --- a/sc/source/core/data/cell2.cxx +++ b/sc/source/core/data/cell2.cxx @@ -54,6 +54,7 @@ #include "externalrefmgr.hxx" #include "scitems.hxx" #include "patattr.hxx" +#include <rtl/strbuf.hxx> using namespace formula; @@ -684,22 +685,22 @@ sal_uInt16 ScFormulaCell::GetMatrixEdge( ScAddress& rOrgPos ) #if OSL_DEBUG_LEVEL > 0 else { - String aTmp; - ByteString aMsg( "broken Matrix, Pos: " ); + rtl::OUString aTmp; + rtl::OStringBuffer aMsg( "broken Matrix, Pos: " ); aPos.Format( aTmp, SCA_VALID_COL | SCA_VALID_ROW, pDocument ); - aMsg += ByteString( aTmp, RTL_TEXTENCODING_ASCII_US ); - aMsg += ", MatOrg: "; + aMsg.append(rtl::OUStringToOString(aTmp, RTL_TEXTENCODING_UTF8 )); + aMsg.append(RTL_CONSTASCII_STRINGPARAM(", MatOrg: ")); aOrg.Format( aTmp, SCA_VALID_COL | SCA_VALID_ROW, pDocument ); - aMsg += ByteString( aTmp, RTL_TEXTENCODING_ASCII_US ); - aMsg += ", MatCols: "; - aMsg += ByteString::CreateFromInt32( nC ); - aMsg += ", MatRows: "; - aMsg += ByteString::CreateFromInt32( nR ); - aMsg += ", DiffCols: "; - aMsg += ByteString::CreateFromInt32( dC ); - aMsg += ", DiffRows: "; - aMsg += ByteString::CreateFromInt32( dR ); - OSL_FAIL( aMsg.GetBuffer() ); + aMsg.append(rtl::OUStringToOString(aTmp, RTL_TEXTENCODING_UTF8 )); + aMsg.append(RTL_CONSTASCII_STRINGPARAM(", MatCols: ")); + aMsg.append(static_cast<sal_Int32>( nC )); + aMsg.append(RTL_CONSTASCII_STRINGPARAM(", MatRows: ")); + aMsg.append(static_cast<sal_Int32>( nR )); + aMsg.append(RTL_CONSTASCII_STRINGPARAM(", DiffCols: ")); + aMsg.append(static_cast<sal_Int32>( dC )); + aMsg.append(RTL_CONSTASCII_STRINGPARAM(", DiffRows: ")); + aMsg.append(static_cast<sal_Int32>( dR )); + OSL_FAIL( aMsg.makeStringAndClear().getStr()); } #endif return nEdges; diff --git a/sc/source/filter/starcalc/scflt.cxx b/sc/source/filter/starcalc/scflt.cxx index 919374f90241..23ba127e1880 100644 --- a/sc/source/filter/starcalc/scflt.cxx +++ b/sc/source/filter/starcalc/scflt.cxx @@ -1003,7 +1003,7 @@ sal_uLong Sc10Import::Import() #if OSL_DEBUG_LEVEL > 0 if (nError) { - OSL_FAIL( ByteString::CreateFromInt32( nError ).GetBuffer() ); + OSL_FAIL( rtl::OString::valueOf(static_cast<sal_Int32>(nError)).getStr()); } #endif |