diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-07 12:09:00 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-07 12:18:39 +0100 |
commit | f0e797a351babf2282bac801c33a485671accf1b (patch) | |
tree | feb2c799f13a098c21b219afcff1f03c9316d775 /basic | |
parent | 8479ff19d9df5ad3f88bc370b49c4003e8bcd39c (diff) |
basic: adapt dllmgr-x64.cxx to OUString changes
Change-Id: I9e5ff5be1f001a9f55953fd516fb5ef7fe94bf44
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/dllmgr-x64.cxx | 6 |
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: |