diff options
author | David Tardon <dtardon@redhat.com> | 2020-06-12 17:01:40 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2020-06-12 19:05:09 +0200 |
commit | 05664c6ffae062a19ff3aa3e0949354d2586919d (patch) | |
tree | c49508b5f80c37978ee54b88d2f72a549e059dc5 /lotuswordpro | |
parent | 0bc6b243746837433713804b430f7ade44b9c8c0 (diff) |
return directly
Change-Id: Ia5ebadfd825b0cbd106893f0b7b25e28b878dfeb
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwptabrack.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptabrack.cxx b/lotuswordpro/source/filter/lwptabrack.cxx index 84a80decd93b..3aea3905e653 100644 --- a/lotuswordpro/source/filter/lwptabrack.cxx +++ b/lotuswordpro/source/filter/lwptabrack.cxx @@ -118,8 +118,7 @@ LwpTab* LwpTabRack::Lookup(sal_uInt16 nIndex) LwpTabRack* LwpTabRack::GetNext() { - LwpTabRack* pTabRack = dynamic_cast<LwpTabRack*>(m_NextID.obj().get()); - return pTabRack; + return dynamic_cast<LwpTabRack*>(m_NextID.obj().get()); } sal_uInt16 LwpTabRack::GetNumTabs() |