summaryrefslogtreecommitdiff
path: root/unoxml/source/xpath/xpathapi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/xpath/xpathapi.cxx')
-rw-r--r--unoxml/source/xpath/xpathapi.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index 9d562a9b502e..9cca92d85e6e 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -268,18 +268,18 @@ namespace XPath
}
int line = pError->line;
if (line) {
- buf.appendAscii("Line: ");
+ buf.append("Line: ");
buf.append(static_cast<sal_Int32>(line));
- buf.appendAscii("\n");
+ buf.append("\n");
}
int column = pError->int2;
if (column) {
- buf.appendAscii("Column: ");
+ buf.append("Column: ");
buf.append(static_cast<sal_Int32>(column));
- buf.appendAscii("\n");
+ buf.append("\n");
}
} else {
- buf.appendAscii("no error argument!");
+ buf.append("no error argument!");
}
OUString msg = buf.makeStringAndClear();
return msg;