diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-10 09:39:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-10 15:22:15 +0200 |
commit | 5cb6144f2119aa1dcce161724abfc22ead1d20b5 (patch) | |
tree | 1296cb64a64b4f8bb7ec633ee605c9ef80a5dee7 /sw/inc/fmtclds.hxx | |
parent | 7623a4832441691a486673cea981ef32b8d72ae7 (diff) |
loplugin: cstylecast
Change-Id: Ie57f543681790e662f6ac7d074ccb37925999790
Diffstat (limited to 'sw/inc/fmtclds.hxx')
-rw-r--r-- | sw/inc/fmtclds.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx index 465137c6346f..3370a983d3b5 100644 --- a/sw/inc/fmtclds.hxx +++ b/sw/inc/fmtclds.hxx @@ -163,7 +163,7 @@ public: }; inline const SwFmtCol &SwAttrSet::GetCol(bool bInP) const - { return (const SwFmtCol&)Get( RES_COL,bInP); } + { return static_cast<const SwFmtCol&>(Get( RES_COL,bInP)); } inline const SwFmtCol &SwFmt::GetCol(bool bInP) const { return aSet.GetCol(bInP); } |