summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-11-07 11:41:32 +0200
committerTor Lillqvist <tlillqvist@suse.com>2012-11-07 11:43:02 +0200
commit7aa973919d49cce56cf3f3abbba5253c15d975a2 (patch)
tree9cea375fb406d68f63db403dea9e00896728d255 /basic
parentbba04ae9ecefd56ead6e59070f50988d170a2ab3 (diff)
Fix String -> OUString fallout
Change-Id: I038848aed0c64c39ca93da89b4a78bd3a1f6d7d0
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/dllmgr-x86.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/dllmgr-x86.cxx b/basic/source/runtime/dllmgr-x86.cxx
index db583fa90035..1e6bec350237 100644
--- a/basic/source/runtime/dllmgr-x86.cxx
+++ b/basic/source/runtime/dllmgr-x86.cxx
@@ -193,7 +193,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;
}
@@ -463,7 +463,7 @@ SbError unmarshalString(StringData const & data, SbxVariable & result) {
return e;
}
}
- data.variable->PutString(String(str));
+ data.variable->PutString(str);
return ERRCODE_NONE;
}
@@ -528,7 +528,7 @@ SbError call(
if (e != ERRCODE_NONE) {
return e;
}
- result.PutString(String(s2));
+ result.PutString(s2);
break;
}
case SbxOBJECT: