summaryrefslogtreecommitdiff
path: root/binaryurp/source/marshal.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/marshal.cxx')
-rw-r--r--binaryurp/source/marshal.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/binaryurp/source/marshal.cxx b/binaryurp/source/marshal.cxx
index f9f5031bccf9..8027176c51b9 100644
--- a/binaryurp/source/marshal.cxx
+++ b/binaryurp/source/marshal.cxx
@@ -73,7 +73,7 @@ void writeCompressed(std::vector< unsigned char > * buffer, sal_uInt32 value) {
}
void writeString(
- std::vector< unsigned char > * buffer, rtl::OUString const & value)
+ std::vector< unsigned char > * buffer, OUString const & value)
{
assert(buffer != 0);
rtl::OString v;
@@ -83,7 +83,7 @@ void writeString(
RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR)))
{
throw css::uno::RuntimeException(
- rtl::OUString(
+ OUString(
RTL_CONSTASCII_USTRINGPARAM(
"UNO string contains invalid UTF-16 sequence")),
css::uno::Reference< css::uno::XInterface >());
@@ -148,13 +148,13 @@ void Marshal::writeType(
} else {
write8(buffer, static_cast< sal_uInt8 >(tc) | 0x80);
write16(buffer, idx);
- writeString(buffer, rtl::OUString(value.get()->pTypeName));
+ writeString(buffer, OUString(value.get()->pTypeName));
}
}
}
void Marshal::writeOid(
- std::vector< unsigned char > * buffer, rtl::OUString const & oid)
+ std::vector< unsigned char > * buffer, OUString const & oid)
{
bool found;
sal_uInt16 idx;
@@ -223,7 +223,7 @@ void Marshal::writeValue(
case typelib_TypeClass_STRING:
writeString(
buffer,
- rtl::OUString(*static_cast< rtl_uString * const * >(value)));
+ OUString(*static_cast< rtl_uString * const * >(value)));
break;
case typelib_TypeClass_TYPE:
writeType(