diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
commit | ab465b90f6c6da5595393a0ba73f33a1e71a2b65 (patch) | |
tree | 36b77192de2799a11b4bf0b269cb3f74d0a0bb1f /sw/inc/fmtclds.hxx | |
parent | 0db96caf0fcce09b87621c11b584a6d81cc7df86 (diff) |
bin/rename-sw-abbreviations.sh
libreoffice-5-0-branch-point
renames the most annoying abbreviations in Writer (and partially
in the shared code too).
Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
Diffstat (limited to 'sw/inc/fmtclds.hxx')
-rw-r--r-- | sw/inc/fmtclds.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx index 267d54190e63..18f25baa75ee 100644 --- a/sw/inc/fmtclds.hxx +++ b/sw/inc/fmtclds.hxx @@ -68,7 +68,7 @@ enum SwColLineAdj COLADJ_BOTTOM }; -class SW_DLLPUBLIC SwFmtCol : public SfxPoolItem +class SW_DLLPUBLIC SwFormatCol : public SfxPoolItem { editeng::SvxBorderStyle m_eLineStyle; ///< style of the separator line sal_uLong m_nLineWidth; ///< Width of the separator line. @@ -92,14 +92,14 @@ class SW_DLLPUBLIC SwFmtCol : public SfxPoolItem SAL_DLLPRIVATE void Calc( sal_uInt16 nGutterWidth, sal_uInt16 nAct ); public: - SwFmtCol(); - SwFmtCol( const SwFmtCol& ); - virtual ~SwFmtCol(); + SwFormatCol(); + SwFormatCol( const SwFormatCol& ); + virtual ~SwFormatCol(); //#i120133# sal_Int16 GetAdjustValue() const { return m_aWidthAdjustValue; } void SetAdjustValue( const sal_Int16& n ) { m_aWidthAdjustValue = n; } - SwFmtCol& operator=( const SwFmtCol& ); + SwFormatCol& operator=( const SwFormatCol& ); /// "pure virtual methods" of SfxPoolItem virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE; @@ -166,10 +166,10 @@ public: void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE; }; -inline const SwFmtCol &SwAttrSet::GetCol(bool bInP) const - { return static_cast<const SwFmtCol&>(Get( RES_COL,bInP)); } +inline const SwFormatCol &SwAttrSet::GetCol(bool bInP) const + { return static_cast<const SwFormatCol&>(Get( RES_COL,bInP)); } -inline const SwFmtCol &SwFmt::GetCol(bool bInP) const +inline const SwFormatCol &SwFormat::GetCol(bool bInP) const { return m_aSet.GetCol(bInP); } #endif |