Kaydet (Commit) 485331b1 authored tarafından Matteo Casalin's avatar Matteo Casalin

Remove unneeded xub_StrLen cast

Change-Id: Ia26f220fa7857f14dfc89b2929f60669ade3b4ea
üst 3f23236d
......@@ -63,8 +63,7 @@ public:
{
uno::Sequence< sal_Int8 > aSeq;
rValue >>= aSeq;
OUString sStr( (sal_Char*)aSeq.getConstArray(), static_cast<xub_StrLen>(aSeq.getLength()),
DDE_TXT_ENCODING );
OUString sStr( (sal_Char*)aSeq.getConstArray(), aSeq.getLength(), DDE_TXT_ENCODING );
// remove not needed CR-LF at the end
sal_Int32 n = sStr.getLength();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment