summaryrefslogtreecommitdiffstats
path: root/bridges
diff options
context:
space:
mode:
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/msvc_shared/except.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/msvc_shared/except.cxx b/bridges/source/cpp_uno/msvc_shared/except.cxx
index 5bce2b04bc47..c9432af4e67b 100644
--- a/bridges/source/cpp_uno/msvc_shared/except.cxx
+++ b/bridges/source/cpp_uno/msvc_shared/except.cxx
@@ -70,7 +70,7 @@ static OUString toUNOname(OUString const& rRTTIname) throw()
static OUString toRTTIname(OUString const& rUNOname) throw()
{
OUStringBuffer aRet(64);
- aRet.appendAscii(".?AV"); // class ".?AV"; struct ".?AU"
+ aRet.append(".?AV"); // class ".?AV"; struct ".?AU"
sal_Int32 nPos = rUNOname.getLength();
while (nPos > 0)
{