summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/fmtuno.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-09-07 11:13:47 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-09-07 12:55:45 +0200
commit801a657ea62365974d96033e95e2fa6174f751cc (patch)
tree2fe0af3a915245b5c3fb7845f371f3a3845685ff /sc/source/ui/unoobj/fmtuno.cxx
parent8d36b558beb0c88d186b027f16c5d7d2da3afa59 (diff)
iString to OUString in some calc core code
Change-Id: I25fc70cfd01f5ad25f7362157796d3ddf06139e1
Diffstat (limited to 'sc/source/ui/unoobj/fmtuno.cxx')
-rw-r--r--sc/source/ui/unoobj/fmtuno.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/unoobj/fmtuno.cxx b/sc/source/ui/unoobj/fmtuno.cxx
index 51aa29aa585c..8f633140fa3e 100644
--- a/sc/source/ui/unoobj/fmtuno.cxx
+++ b/sc/source/ui/unoobj/fmtuno.cxx
@@ -624,7 +624,7 @@ ScTableValidationObj::ScTableValidationObj(ScDocument* pDoc, sal_uLong nKey,
{
// Eintrag aus dem Dokument lesen...
- sal_Bool bFound = false;
+ bool bFound = false;
if ( pDoc && nKey )
{
const ScValidationData* pData = pDoc->GetValidationEntry( nKey );
@@ -650,7 +650,7 @@ ScTableValidationObj::ScTableValidationObj(ScDocument* pDoc, sal_uLong nKey,
if (nValMode != SC_VALID_ANY && pDoc->IsInExternalReferenceMarking())
pData->MarkUsedExternalReferences();
- bFound = sal_True;
+ bFound = true;
}
}
if (!bFound)
@@ -716,10 +716,10 @@ void ScTableValidationObj::ClearData_Impl()
maExprNmsp1.Erase();
maExprNmsp2.Erase();
meGrammar1 = meGrammar2 = FormulaGrammar::GRAM_UNSPECIFIED; // will be overriden when needed
- aInputTitle.Erase();
- aInputMessage.Erase();
- aErrorTitle.Erase();
- aErrorMessage.Erase();
+ aInputTitle = OUString();
+ aInputMessage = OUString();
+ aErrorTitle = OUString();
+ aErrorMessage = OUString();
}
ScTableValidationObj::~ScTableValidationObj()