diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-01-28 17:30:38 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-01-28 17:36:20 +0100 |
commit | 98bb5d242ad8360ec02fd0f4dbb4d19dec59dedd (patch) | |
tree | 3e2c7fcbe532f18024c08ecd6992a7001e9d193f /svx | |
parent | 0dc532bffcda35d15a4719c05bb258e470355b98 (diff) |
fix previous string conversion:
- SdrAngleItem::GetPresentation missing space
- SwFmtFrmSize::GetPresentation spurious s
- crstrvl.cxx build breaker
Change-Id: I4f1ce51943dff002ce250aff6f37f090c727bb00
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdattr.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx index e30f7f92265a..4ce0137669e0 100644 --- a/svx/source/svdraw/svdattr.cxx +++ b/svx/source/svdraw/svdattr.cxx @@ -901,6 +901,7 @@ SfxItemPresentation SdrAngleItem::GetPresentation( OUString aStr; SdrItemPool::TakeItemName(Which(), aStr); + aText.insert(0, ' '); aText.insert(0, aStr); } |