summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xeformula.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-05-28 16:20:59 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-05-28 16:22:27 -0400
commitd5d4e2608d27130f555407b117cef7ca784583ef (patch)
tree6c4883bf8780aaefe04874210048745111aa4edc /sc/source/filter/excel/xeformula.cxx
parent7e5fb2d5dde2bac990cd5d338e477e99613335fc (diff)
String to rtl::OUString in the external ref manager code.
And fixed the fallouts of this change to get it to build.
Diffstat (limited to 'sc/source/filter/excel/xeformula.cxx')
-rw-r--r--sc/source/filter/excel/xeformula.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xeformula.cxx b/sc/source/filter/excel/xeformula.cxx
index 9220a46314c7..a3ab112d4525 100644
--- a/sc/source/filter/excel/xeformula.cxx
+++ b/sc/source/filter/excel/xeformula.cxx
@@ -2123,7 +2123,7 @@ void XclExpFmlaCompImpl::ProcessExternalName( const XclExpScToken& rTokData )
// insert the new external name and create the tNameX token
sal_uInt16 nExtSheet, nExtName;
- const String* pFile = rExtRefMgr.getExternalFileName( nFileId );
+ const ::rtl::OUString* pFile = rExtRefMgr.getExternalFileName( nFileId );
if( pFile && mxData->mpLinkMgr->InsertExtName( nExtSheet, nExtName, *pFile, rName, xArray ) )
{
AppendNameXToken( nExtSheet, nExtName, rTokData.mnSpaces );