Kaydet (Commit) 5d2ee782 authored tarafından Sven Jacobi's avatar Sven Jacobi

#87351# fixed unicode conversion bug

üst 11287b21
......@@ -2,9 +2,9 @@
*
* $RCSfile: svdedtv.cxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: aw $ $Date: 2001-02-15 16:11:33 $
* last change: $Author: sj $ $Date: 2001-05-22 10:06:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -772,7 +772,7 @@ void SdrEditView::CopyMarkedObj()
else
{
aStr += "von ";
aStr += nCloneErrCnt;
aStr += ByteString::CreateFromInt32( nCloneErrCnt );
aStr += " Zeichenobjekten.";
}
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: svdpagv.cxx,v $
*
* $Revision: 1.11 $
* $Revision: 1.12 $
*
* last change: $Author: ka $ $Date: 2001-03-30 10:12:44 $
* last change: $Author: sj $ $Date: 2001-05-22 10:01:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -2366,7 +2366,7 @@ XubString SdrPageView::GetActualPathName(sal_Unicode cSep) const
{
aStr = String();
aStr += sal_Unicode('(');
aStr += GetEnteredLevel();
aStr += String::CreateFromInt32( GetEnteredLevel() );
aStr += sal_Unicode(')');
}
......
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