diff options
Diffstat (limited to 'sw/inc/fmtline.hxx')
-rw-r--r-- | sw/inc/fmtline.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/fmtline.hxx b/sw/inc/fmtline.hxx index cd5d85e3d605..e6373b137502 100644 --- a/sw/inc/fmtline.hxx +++ b/sw/inc/fmtline.hxx @@ -26,14 +26,14 @@ class IntlWrapper; -class SW_DLLPUBLIC SwFmtLineNumber: public SfxPoolItem +class SW_DLLPUBLIC SwFormatLineNumber: public SfxPoolItem { sal_uLong nStartValue :24; ///< Starting value for the paragraph. 0 == no starting value. bool bCountLines :1; ///< Also count lines of paragraph. public: - SwFmtLineNumber(); - virtual ~SwFmtLineNumber(); + SwFormatLineNumber(); + virtual ~SwFormatLineNumber(); TYPEINFO_OVERRIDE(); @@ -55,8 +55,8 @@ public: void SetCountLines( bool b ) { bCountLines = b; } }; -inline const SwFmtLineNumber &SwAttrSet::GetLineNumber(bool bInP) const - { return static_cast<const SwFmtLineNumber&>(Get( RES_LINENUMBER,bInP)); } +inline const SwFormatLineNumber &SwAttrSet::GetLineNumber(bool bInP) const + { return static_cast<const SwFormatLineNumber&>(Get( RES_LINENUMBER,bInP)); } #endif |