diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-10 12:52:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-10 15:22:17 +0200 |
commit | 36057c3a11deb3a7c3748d7aafd5e6dd08b58984 (patch) | |
tree | 3a707c85eb28ae11e0d0b004928c491fe15d6074 /sw/inc/fmturl.hxx | |
parent | 34966ecb6fb139d49e55796229aa98e27ef8e4b2 (diff) |
loplugin: cstylecast
Change-Id: If7ada4cba0b1098bba304f1ec9b860ec7df75e7a
Diffstat (limited to 'sw/inc/fmturl.hxx')
-rw-r--r-- | sw/inc/fmturl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/fmturl.hxx b/sw/inc/fmturl.hxx index 3f12aba99e83..55a09ac0dc23 100644 --- a/sw/inc/fmturl.hxx +++ b/sw/inc/fmturl.hxx @@ -74,7 +74,7 @@ public: }; inline const SwFmtURL &SwAttrSet::GetURL(bool bInP) const - { return (const SwFmtURL&)Get( RES_URL,bInP); } + { return static_cast<const SwFmtURL&>(Get( RES_URL,bInP)); } inline const SwFmtURL &SwFmt::GetURL(bool bInP) const { return aSet.GetURL(bInP); } |