diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-02-25 17:52:23 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-02-25 17:59:40 +0100 |
commit | 4f4e4e40f5b79a4dba46ffedd11cafa7beb08a87 (patch) | |
tree | c158b93b176b084eac024c0e3b5e94e18911f50f /svx | |
parent | e39c551c6133d0ff2b7074f64ea66563ebcce14b (diff) |
loplugin: improve indentation
Change-Id: Idb847766d93dc222d6c55889616da21eeac212ee
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 9 | ||||
-rw-r--r-- | svx/source/table/cell.cxx | 2 |
2 files changed, 4 insertions, 7 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index dfe9aee667eb..f0aa24a975b6 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -451,16 +451,13 @@ ERecoveryState RecoveryCore::mapDocState2RecoverState(sal_Int32 eDocState) ) eRecState = E_RECOVERY_IS_IN_PROGRESS; // red - else - if ((eDocState & E_DAMAGED) == E_DAMAGED) + else if ((eDocState & E_DAMAGED) == E_DAMAGED) eRecState = E_RECOVERY_FAILED; // yellow - else - if ((eDocState & E_INCOMPLETE) == E_INCOMPLETE) + else if ((eDocState & E_INCOMPLETE) == E_INCOMPLETE) eRecState = E_ORIGINAL_DOCUMENT_RECOVERED; // green - else - if ((eDocState & E_SUCCEDED) == E_SUCCEDED) + else if ((eDocState & E_SUCCEDED) == E_SUCCEDED) eRecState = E_SUCCESSFULLY_RECOVERED; return eRecState; diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index e931007c20f4..93cf2f45eea7 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -1048,7 +1048,7 @@ void SAL_CALL Cell::setPropertyValue( const OUString& rPropertyName, const Any& if(!(rValue >>= nMode)) throw IllegalArgumentException(); - eMode = (BitmapMode)nMode; + eMode = (BitmapMode)nMode; } mpProperties->SetObjectItem( XFillBmpStretchItem( eMode == BitmapMode_STRETCH ) ); |