[Libreoffice-commits] .: sc/source
Caolán McNamara
caolan at kemper.freedesktop.org
Mon Jan 16 09:00:16 PST 2012
sc/source/core/tool/interpr4.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit ef0ee083e668be2b41e86196417893f84359aee8
Author: Caolán McNamara <caolanm at redhat.com>
Date: Mon Jan 16 17:00:05 2012 +0000
fix build error
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index b329ccb..cda83d3 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -1456,7 +1456,7 @@ void ScInterpreter::PopExternalSingleRef(
return;
ScExternalRefManager* pRefMgr = pDok->GetExternalRefManager();
- const OUString* pFile = pRefMgr->getExternalFileName(rFileId);
+ const rtl::OUString* pFile = pRefMgr->getExternalFileName(rFileId);
if (!pFile)
{
SetError(errNoName);
@@ -1548,7 +1548,7 @@ void ScInterpreter::GetExternalDoubleRef(
sal_uInt16 nFileId, const String& rTabName, const ScComplexRefData& rData, ScExternalRefCache::TokenArrayRef& rArray)
{
ScExternalRefManager* pRefMgr = pDok->GetExternalRefManager();
- const OUString* pFile = pRefMgr->getExternalFileName(nFileId);
+ const rtl::OUString* pFile = pRefMgr->getExternalFileName(nFileId);
if (!pFile)
{
SetError(errNoName);
More information about the Libreoffice-commits
mailing list