summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-06-20 23:08:04 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-06-20 23:08:04 +0200
commit8aef5dba85ce9f84ca9bb2751ac32d906dc445e8 (patch)
treeaf601571b720ce691bb3300052ad2bc27bee2629 /sfx2
parent841cd41e29a8f173c4ac6371de147da102099964 (diff)
fix problem inserted by 28e07d1f2cc8f1f9c98836d3ada12b7173157704
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/docfac.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/doc/docfac.cxx b/sfx2/source/doc/docfac.cxx
index 11b2f96b7b93..a4ca93796e3e 100644
--- a/sfx2/source/doc/docfac.cxx
+++ b/sfx2/source/doc/docfac.cxx
@@ -170,9 +170,9 @@ void SfxObjectFactory::RegisterViewFactory
continue;
rtl::OStringBuffer aStr(RTL_CONSTASCII_STRINGPARAM(
"SfxObjectFactory::RegisterViewFactory: duplicate view name '"));
- sMessage.append(rtl::OUStringToOString(sViewName, RTL_TEXTENCODING_ASCII_US));
- sMessage.append(RTL_CONSTASCII_STRINGPARAM("'!"));
- OSL_FAIL(sMessage.getStr());
+ aStr.append(rtl::OUStringToOString(sViewName, RTL_TEXTENCODING_ASCII_US));
+ aStr.append(RTL_CONSTASCII_STRINGPARAM("'!"));
+ OSL_FAIL(aStr.getStr());
break;
}
}