summaryrefslogtreecommitdiff
path: root/basic/source/runtime/dllmgr-x64.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/dllmgr-x64.cxx')
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx
index c7a7729fb76a..14d782ac68be 100644
--- a/basic/source/runtime/dllmgr-x64.cxx
+++ b/basic/source/runtime/dllmgr-x64.cxx
@@ -185,7 +185,7 @@ SbError marshalString(
{
OSL_ASSERT(variable != 0 && buffer != 0);
rtl::OString str;
- SbError e = convert(variable->GetString(), &str);
+ SbError e = convert(variable->GetOUString(), &str);
if (e != ERRCODE_NONE) {
return e;
}
@@ -448,7 +448,7 @@ SbError unmarshalString(StringData const & data, SbxVariable & result) {
return e;
}
}
- data.variable->PutString(String(str));
+ data.variable->PutString(str);
return ERRCODE_NONE;
}
@@ -575,7 +575,7 @@ SbError call(
if (e != ERRCODE_NONE) {
return e;
}
- result.PutString(String(s2));
+ result.PutString(s2);
break;
}
case SbxOBJECT: