summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-27 17:34:02 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-28 01:12:49 -0400
commitf59dcdb19ba275c0c712fd88ed0a9fd84b908704 (patch)
tree30113595ca4a475b208f43d6db722c8228a5e81d /sc
parent942589b455f3a765e8d5f789afb5973f9bf0e2b8 (diff)
Reduce indentation by early bail-out.
Change-Id: I5965a38fdd4e80e22136905881a39eb38ffb7798
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx115
1 files changed, 57 insertions, 58 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 45e41da5066f..df8d3cebbcf5 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -1389,69 +1389,68 @@ static sal_Bool lcl_PutFormulaArray( ScDocShell& rDocShell, const ScRange& rRang
}
// used in ScCellRangeObj::getFormulaArray and ScCellObj::GetInputString_Impl
-static String lcl_GetInputString( ScDocument* pDoc, const ScAddress& rPosition, sal_Bool bEnglish )
+static OUString lcl_GetInputString( ScDocument* pDoc, const ScAddress& rPos, sal_Bool bEnglish )
{
- rtl::OUString aVal;
- if ( pDoc )
+ if (!pDoc)
+ return EMPTY_OUSTRING;
+
+
+ ScBaseCell* pCell = pDoc->GetCell(rPos);
+ if (!pCell || pCell->GetCellType() == CELLTYPE_NOTE)
+ return EMPTY_OUSTRING;
+
+ OUString aVal;
+
+ CellType eType = pCell->GetCellType();
+ if (eType == CELLTYPE_FORMULA)
{
- ScBaseCell* pCell = pDoc->GetCell( rPosition );
- if ( pCell && pCell->GetCellType() != CELLTYPE_NOTE )
+ ScFormulaCell* pForm = (ScFormulaCell*)pCell;
+ pForm->GetFormula( aVal,formula::FormulaGrammar::mapAPItoGrammar( bEnglish, false));
+ return aVal;
+ }
+
+ SvNumberFormatter* pFormatter = bEnglish ? ScGlobal::GetEnglishFormatter() :
+ pDoc->GetFormatTable();
+ // Since the English formatter was constructed with
+ // LANGUAGE_ENGLISH_US the "General" format has index key 0,
+ // we don't have to query.
+ sal_uInt32 nNumFmt = bEnglish ? 0 : pDoc->GetNumberFormat(rPos);
+
+ if ( eType == CELLTYPE_EDIT )
+ {
+ // GetString an der EditCell macht Leerzeichen aus Umbruechen,
+ // hier werden die Umbrueche aber gebraucht
+ const EditTextObject* pData = ((ScEditCell*)pCell)->GetData();
+ if (pData)
{
- CellType eType = pCell->GetCellType();
- if ( eType == CELLTYPE_FORMULA )
- {
- ScFormulaCell* pForm = (ScFormulaCell*)pCell;
- pForm->GetFormula( aVal,formula::FormulaGrammar::mapAPItoGrammar( bEnglish, false));
- }
- else
- {
- SvNumberFormatter* pFormatter = bEnglish ? ScGlobal::GetEnglishFormatter() :
- pDoc->GetFormatTable();
- // Since the English formatter was constructed with
- // LANGUAGE_ENGLISH_US the "General" format has index key 0,
- // we don't have to query.
- sal_uInt32 nNumFmt = bEnglish ?
- 0 :
- pDoc->GetNumberFormat( rPosition );
-
- if ( eType == CELLTYPE_EDIT )
- {
- // GetString an der EditCell macht Leerzeichen aus Umbruechen,
- // hier werden die Umbrueche aber gebraucht
- const EditTextObject* pData = ((ScEditCell*)pCell)->GetData();
- if (pData)
- {
- EditEngine& rEngine = pDoc->GetEditEngine();
- rEngine.SetText( *pData );
- aVal = rEngine.GetText( LINEEND_LF );
- }
- }
- else
- {
- ScRefCellValue aCell;
- aCell.assign(*pCell);
- ScCellFormat::GetInputString(aCell, nNumFmt, aVal, *pFormatter);
- }
+ EditEngine& rEngine = pDoc->GetEditEngine();
+ rEngine.SetText( *pData );
+ aVal = rEngine.GetText( LINEEND_LF );
+ }
+ }
+ else
+ {
+ ScRefCellValue aCell;
+ aCell.assign(*pCell);
+ ScCellFormat::GetInputString(aCell, nNumFmt, aVal, *pFormatter);
+ }
- // ggf. ein ' davorhaengen wie in ScTabViewShell::UpdateInputHandler
- if ( eType == CELLTYPE_STRING || eType == CELLTYPE_EDIT )
- {
- double fDummy;
- String aTempString = aVal;
- sal_Bool bIsNumberFormat(pFormatter->IsNumberFormat(aTempString, nNumFmt, fDummy));
- if ( bIsNumberFormat )
- aTempString.Insert('\'',0);
- else if ( aTempString.Len() && aTempString.GetChar(0) == '\'' )
- {
- // if the string starts with a "'", add another one because setFormula
- // strips one (like text input, except for "text" number formats)
- if ( bEnglish || ( pFormatter->GetType(nNumFmt) != NUMBERFORMAT_TEXT ) )
- aTempString.Insert('\'',0);
- }
- aVal = aTempString;
- }
- }
+ // ggf. ein ' davorhaengen wie in ScTabViewShell::UpdateInputHandler
+ if ( eType == CELLTYPE_STRING || eType == CELLTYPE_EDIT )
+ {
+ double fDummy;
+ String aTempString = aVal;
+ sal_Bool bIsNumberFormat(pFormatter->IsNumberFormat(aTempString, nNumFmt, fDummy));
+ if ( bIsNumberFormat )
+ aTempString.Insert('\'',0);
+ else if ( aTempString.Len() && aTempString.GetChar(0) == '\'' )
+ {
+ // if the string starts with a "'", add another one because setFormula
+ // strips one (like text input, except for "text" number formats)
+ if ( bEnglish || ( pFormatter->GetType(nNumFmt) != NUMBERFORMAT_TEXT ) )
+ aTempString.Insert('\'',0);
}
+ aVal = aTempString;
}
return aVal;
}