summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdocirc.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:01:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:01:16 +0200
commitc77ebeaf54b252dc2003a488222b407bd819ea5b (patch)
tree4b29873580df8319830352f05d500bf07dda600b /svx/source/svdraw/svdocirc.cxx
parent5fb46c8778be27e2838cc61b14e2af5d4647726c (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I34cde265442834565c9d0c55ae8c2ee9cc8fc58d
Diffstat (limited to 'svx/source/svdraw/svdocirc.cxx')
-rw-r--r--svx/source/svdraw/svdocirc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdocirc.cxx b/svx/source/svdraw/svdocirc.cxx
index 8c75b1656a7a..d0716bd841cc 100644
--- a/svx/source/svdraw/svdocirc.cxx
+++ b/svx/source/svdraw/svdocirc.cxx
@@ -576,7 +576,7 @@ OUString SdrCircObj::getSpecialDragComment(const SdrDragStat& rDrag) const
const ImpCircUser* pU = static_cast<const ImpCircUser*>(rDrag.GetUser());
sal_Int32 nAngle;
- aBuf.appendAscii(" (");
+ aBuf.append(" (");
if(3 == nPointCount)
{
@@ -604,7 +604,7 @@ OUString SdrCircObj::getSpecialDragComment(const SdrDragStat& rDrag) const
OUString aStr;
ImpTakeDescriptionStr(STR_DragCircAngle, aStr);
OUStringBuffer aBuf(aStr);
- aBuf.appendAscii(" (");
+ aBuf.append(" (");
aBuf.append(GetAngleStr(nAngle));
aBuf.append(')');