summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/interpr1.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:02:18 +0200
commit9f075246c59225dbd9ec7f700de8bbba491cb458 (patch)
tree55702a66d705684ebe91e21c3b3a54869853b284 /sc/source/core/tool/interpr1.cxx
parent049a665bd81ee6d0d700d562d9fc6c953a4f097e (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I4e350a0c6045d07677edae4f9921db0a42b4e0f5
Diffstat (limited to 'sc/source/core/tool/interpr1.cxx')
-rw-r--r--sc/source/core/tool/interpr1.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index b596d42739e0..a9f877253bdd 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -2176,7 +2176,7 @@ void ScInterpreter::ScCell()
aBuf.append('\'');
const INetURLObject& rURLObj = pShell->GetMedium()->GetURLObject();
aBuf.append(rURLObj.GetMainURL(INetURLObject::DECODE_UNAMBIGUOUS));
- aBuf.appendAscii("'#$");
+ aBuf.append("'#$");
OUString aTabName;
pDok->GetName( nTab, aTabName );
aBuf.append(aTabName);
@@ -2365,7 +2365,7 @@ void ScInterpreter::ScCellExternal()
OUStringBuffer aBuf;
aBuf.append('\'');
aBuf.append(*p);
- aBuf.appendAscii("'#$");
+ aBuf.append("'#$");
aBuf.append(aTabName);
PushString(aBuf.makeStringAndClear());
}