summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-11-28 02:39:28 +0100
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-11-29 10:36:49 +0100
commitd984afc42fdae69bc84b6716e97395752fd52304 (patch)
tree94984dbb330448ab4665bfcec4b4d3448ee3e705
parentcd97c5ee6be5820585e63d0fff2c9722836f6035 (diff)
clean up and reduce indent levels
Change-Id: Ifb4597daab338750de1fd6b3db9c21b28c5ce9e6
-rw-r--r--sw/source/core/unocore/unostyle.cxx18
1 files changed, 6 insertions, 12 deletions
diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx
index 640b5c14bf52..891cb9f45bd6 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -621,19 +621,13 @@ uno::Sequence<OUString> SwXStyleFamily::getElementNames() throw( uno::RuntimeExc
sal_Bool SwXStyleFamily::hasByName(const OUString& rName) throw( uno::RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
- bool bRet = false;
- if(m_pBasePool)
- {
- OUString sStyleName;
- SwStyleNameMapper::FillUIName(rName, sStyleName, lcl_GetSwEnumFromSfxEnum ( m_eFamily ), true );
- m_pBasePool->SetSearchMask(m_eFamily);
- SfxStyleSheetBase* pBase = m_pBasePool->Find(sStyleName);
- bRet = nullptr != pBase;
- }
- else
+ if(!m_pBasePool)
throw uno::RuntimeException();
- return bRet;
-
+ OUString sStyleName;
+ SwStyleNameMapper::FillUIName(rName, sStyleName, lcl_GetSwEnumFromSfxEnum(m_eFamily), true);
+ m_pBasePool->SetSearchMask(m_eFamily);
+ SfxStyleSheetBase* pBase = m_pBasePool->Find(sStyleName);
+ return nullptr != pBase;
}
uno::Type SwXStyleFamily::getElementType() throw( uno::RuntimeException, std::exception )