summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdattr.cxx
diff options
context:
space:
mode:
authorKai Ahrens <ka@openoffice.org>2001-03-30 09:12:44 +0000
committerKai Ahrens <ka@openoffice.org>2001-03-30 09:12:44 +0000
commitafdaf3b7f8ae93b7a0556dc901c61e6eda11274a (patch)
tree94044293b3d556d33aac4a87b3b858f45919d4d7 /svx/source/svdraw/svdattr.cxx
parent318c0d46b9569eaecf7c6d2f6a9dacfdaca84fa5 (diff)
#84824#: String::CreateFromInt32 bug fixes
Diffstat (limited to 'svx/source/svdraw/svdattr.cxx')
-rw-r--r--svx/source/svdraw/svdattr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx
index ccaa8ed84673..7a390ac5fb0c 100644
--- a/svx/source/svdraw/svdattr.cxx
+++ b/svx/source/svdraw/svdattr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdattr.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: dl $ $Date: 2001-03-05 16:25:09 $
+ * last change: $Author: ka $ $Date: 2001-03-30 10:12:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -422,9 +422,9 @@ void SdrItemPool::Ctor(SfxItemPool* pMaster, USHORT nAttrStart, USHORT nAttrEnd)
ByteString aStr("PoolDefaultItem not set: ");
aStr += "Num=";
- aStr += nNum;
+ aStr += ByteString::CreateFromInt32( nNum );
aStr += "Which=";
- aStr += nNum + 1000;
+ aStr += ByteString::CreateFromInt32( nNum + 1000 );
DBG_ERROR(aStr.GetBuffer());
}