diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-26 22:24:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 08:00:32 +0200 |
commit | a6050c32f30796743f9ab9b2a5c793ced9b8f747 (patch) | |
tree | a2fa6d05708d1c99414893064adaee56460ac728 /lotuswordpro | |
parent | 01ed4bf52db701c4e7824f4a92b5a3afa2a5ca4b (diff) |
Clean up aEmpty
Change-Id: I4c4294b7fb1cb537ba3ae3e6e7e747a3333b7469
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpbulletstylemgr.cxx | 8 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpsilverbullet.cxx | 21 |
2 files changed, 11 insertions, 18 deletions
diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx index 2c7a86e7e7ec..34f9c563e9ca 100644 --- a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx +++ b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx @@ -100,25 +100,23 @@ LwpBulletStyleMgr::~LwpBulletStyleMgr() OUString LwpBulletStyleMgr::RegisterBulletStyle(LwpPara* pPara, LwpBulletOverride* pBullOver, LwpIndentOverride* pIndent) { - OUString aEmpty; - if(!pPara || !pIndent || !pBullOver) { - return aEmpty; + return ""; } LwpSilverBullet* pSilverBullet = pPara->GetSilverBullet(); if (!pSilverBullet) { assert(false); - return aEmpty; + return ""; } LwpPara* pBulletPara = pSilverBullet->GetBulletPara(); if (!pBulletPara) { assert(false); - return aEmpty; + return ""; } LwpParaProperty* pProp = pPara->GetProperty(PP_LOCAL_INDENT); diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx index 3ae7567bda38..a695c9001644 100644 --- a/lotuswordpro/source/filter/lwpsilverbullet.cxx +++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx @@ -189,12 +189,10 @@ void LwpSilverBullet::RegisterStyle() */ OUString LwpSilverBullet::GetBulletFontName() { - OUString aEmpty; - //foundry has been set? if (!m_pFoundry) { - return aEmpty; + return ""; } LwpFontManager& rFontMgr = m_pFoundry->GetFontManger(); @@ -205,7 +203,7 @@ OUString LwpSilverBullet::GetBulletFontName() //final fontid is valid? if (nFinalFont > 255 || nFinalFont == 0) { - return aEmpty; + return ""; } //get font name from font manager. @@ -251,12 +249,10 @@ LwpPara* LwpSilverBullet::GetBulletPara() */ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber) { - OUString aEmpty; - if (!pParaNumber) { assert(false); - return aEmpty; + return ""; } OUString strNumChar("1"); @@ -303,7 +299,7 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber) } break; case NUMCHAR_none: - strNumChar = aEmpty; + strNumChar.clear(); break; default: break; @@ -359,7 +355,7 @@ sal_uInt16 LwpSilverBullet::GetDisplayLevel(sal_uInt8 nPos) */ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos) { - OUString aRet, aEmpty; + OUString aRet; sal_uInt16 nHideBit = (1 << nPos); bool bDivisionName = false; bool bSectionName = false; @@ -367,7 +363,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos) LwpFrib* pParaFrib = m_pBulletPara->GetFribs().GetFribs(); if (!pParaFrib) { - return aEmpty; + return ""; } while (pParaFrib) @@ -377,7 +373,7 @@ OUString LwpSilverBullet::GetAdditionalName(sal_uInt8 nPos) ModifierInfo* pMoInfo = pParaFrib->GetModifiers(); if (!pMoInfo) { - return aEmpty; + return ""; } sal_uInt16 nHideLevels = pMoInfo->aTxtAttrOverride.GetHideLevels(); sal_uInt16 nType = static_cast<LwpFribDocVar*>(pParaFrib)->GetType(); @@ -435,11 +431,10 @@ OUString LwpSilverBullet::GetDivisionName() OUString LwpSilverBullet::GetSectionName() { - OUString aEmpty; LwpStory* pStory = dynamic_cast<LwpStory*>(m_aStory.obj(VO_STORY).get()); if (!pStory) { - return aEmpty; + return ""; } return pStory->GetSectionName(); |