summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorSven Jacobi <sj@openoffice.org>2001-05-22 09:06:06 +0000
committerSven Jacobi <sj@openoffice.org>2001-05-22 09:06:06 +0000
commit5d2ee78216509cb19c83afa751a8dc9f0508cac5 (patch)
tree2bfa87fa05ae3d9fa9a3de8c557871e576d717d0 /svx
parent11287b21ed1d73f4d439056b9888dbc0569e2b31 (diff)
#87351# fixed unicode conversion bug
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdedtv.cxx6
-rw-r--r--svx/source/svdraw/svdpagv.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdedtv.cxx b/svx/source/svdraw/svdedtv.cxx
index 94fd52a87a87..afefcc372564 100644
--- a/svx/source/svdraw/svdedtv.cxx
+++ b/svx/source/svdraw/svdedtv.cxx
@@ -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.";
}
diff --git a/svx/source/svdraw/svdpagv.cxx b/svx/source/svdraw/svdpagv.cxx
index 508352069b7d..a950f720f4c0 100644
--- a/svx/source/svdraw/svdpagv.cxx
+++ b/svx/source/svdraw/svdpagv.cxx
@@ -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(')');
}