summaryrefslogtreecommitdiff
path: root/xmloff/source/text/txtftne.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:00:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:00:11 +0200
commit38d0db29bb9f51a4e09893782f0f37d76d557305 (patch)
tree485dd1468adaf780ac2bbd8257c24030e0b8690b /xmloff/source/text/txtftne.cxx
parent1b70ed18bd2ddbbd7b8d7512f0bed50f294e5fed (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: Ifb6cc6d604d1a2b87491f2e455e65c94a5431095
Diffstat (limited to 'xmloff/source/text/txtftne.cxx')
-rw-r--r--xmloff/source/text/txtftne.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/txtftne.cxx b/xmloff/source/text/txtftne.cxx
index 57900bd8efef..63ad69470b9e 100644
--- a/xmloff/source/text/txtftne.cxx
+++ b/xmloff/source/text/txtftne.cxx
@@ -170,7 +170,7 @@ void XMLTextParagraphExport::exportTextFootnoteHelper(
sal_Int32 nNumber = 0;
aAny >>= nNumber;
OUStringBuffer aBuf;
- aBuf.appendAscii("ftn");
+ aBuf.append("ftn");
aBuf.append(nNumber);
GetExport().AddAttribute(XML_NAMESPACE_TEXT, XML_ID,
aBuf.makeStringAndClear());