summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdotxat.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdotxat.cxx b/svx/source/svdraw/svdotxat.cxx
index 48541e778093..75c7541d7956 100644
--- a/svx/source/svdraw/svdotxat.cxx
+++ b/svx/source/svdraw/svdotxat.cxx
@@ -251,11 +251,12 @@ void SdrTextObj::ImpSetTextStyleSheetListeners()
if(aStyleName.Len())
{
- XubString aFam = UniString::CreateFromInt32((sal_uInt16)eStyleFam);
- aFam.Expand(5);
+ OUStringBuffer aFam;
+ aFam.append(static_cast<sal_Int32>(eStyleFam));
+ comphelper::string::padToLength(aFam, 5, ' ');
aStyleName += sal_Unicode('|');
- aStyleName += aFam;
+ aStyleName += aFam.makeStringAndClear();
sal_Bool bFnd(sal_False);
sal_uInt32 nNum(aStyleNames.size());