diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-06-15 10:01:06 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-06-15 10:01:06 -0400 |
commit | 46913fd6172f373a2bd1368b47a40e00c4aa5e87 (patch) | |
tree | f0062800fbb5ba803280d73a32e21800ef174a1f /sc/source/ui/unoobj/cellsuno.cxx | |
parent | 90d71fa312796762f2a346f92932fa2c74cefbe1 (diff) |
calctabcolor: fixed wrong bracing & indentation.
Diffstat (limited to 'sc/source/ui/unoobj/cellsuno.cxx')
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 3f5612376962..6233d5f8944e 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -8473,7 +8473,7 @@ void ScTableSheetObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEn } } else if ( pEntry->nWID == SC_WID_UNO_TABCOLOR ) - { + { sal_Int32 nColor = COL_AUTO; if (aValue >>= nColor) { @@ -8483,14 +8483,13 @@ void ScTableSheetObj::SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEn } else if ( pEntry->nWID == SC_WID_UNO_CODENAME ) { - rtl::OUString aCodeName; - if ( pDocSh && ( aValue >>= aCodeName ) ) - { - String sNewName( aCodeName ); - pDocSh->GetDocument()->SetCodeName( GetTab_Impl(), sNewName ); + rtl::OUString aCodeName; + if ( pDocSh && ( aValue >>= aCodeName ) ) + { + String sNewName( aCodeName ); + pDocSh->GetDocument()->SetCodeName( GetTab_Impl(), sNewName ); + } } - } - } else ScCellRangeObj::SetOnePropertyValue(pEntry, aValue); // base class, no Item WID } @@ -8630,17 +8629,16 @@ void ScTableSheetObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEn ScUnoHelpFunctions::SetBoolInAny( rAny, bAutoPrint ); } else if ( pEntry->nWID == SC_WID_UNO_TABCOLOR ) - { + { rAny <<= sal_Int32(pDoc->GetTabBgColor(nTab).GetColor()); - } + } else if ( pEntry->nWID == SC_WID_UNO_CODENAME ) { - String aCodeName; - if ( pDocSh ) - pDocSh->GetDocument()->GetCodeName( GetTab_Impl(), aCodeName ); - rAny <<= rtl::OUString( aCodeName ); - } - } + String aCodeName; + if ( pDocSh ) + pDocSh->GetDocument()->GetCodeName( GetTab_Impl(), aCodeName ); + rAny <<= rtl::OUString( aCodeName ); + } else ScCellRangeObj::GetOnePropertyValue(pEntry, rAny); } |