summaryrefslogtreecommitdiff
path: root/sw/inc/ftninfo.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-14 08:36:38 +0200
committerNoel Grandin <noel@peralex.com>2014-11-14 10:57:28 +0200
commita05da74d0bdf691f097aa925fa59e21203ade8ed (patch)
tree519ce8d2ee5c722acc46a269c67b44aec960ed97 /sw/inc/ftninfo.hxx
parentd32be3ace8c8fd430bbecdf69f88a116b0ee91d1 (diff)
loplugin: cstylecast
Change-Id: I7235a67e85c10ec9fefe7f718cda18f633cda97a
Diffstat (limited to 'sw/inc/ftninfo.hxx')
-rw-r--r--sw/inc/ftninfo.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/ftninfo.hxx b/sw/inc/ftninfo.hxx
index 2ff9034d8c3f..2b250287892b 100644
--- a/sw/inc/ftninfo.hxx
+++ b/sw/inc/ftninfo.hxx
@@ -23,6 +23,7 @@
#include "swdllapi.h"
#include <calbck.hxx>
#include <editeng/numitem.hxx>
+#include <fmtcol.hxx>
class SwTxtFmtColl;
class SwPageDesc;
@@ -49,7 +50,7 @@ public:
bool DependsOn( const SwPageDesc* ) const;
void SetFtnTxtColl(SwTxtFmtColl& rColl);
- SwTxtFmtColl* GetFtnTxtColl() const { return (SwTxtFmtColl*) GetRegisteredIn(); } // can be 0.
+ SwTxtFmtColl* GetFtnTxtColl() const { return const_cast<SwTxtFmtColl*>(static_cast<const SwTxtFmtColl*>(GetRegisteredIn())); } // can be 0.
SwCharFmt* GetCharFmt(SwDoc &rDoc) const;
void SetCharFmt( SwCharFmt* );