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/fmtrowsplt.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/fmtrowsplt.hxx')
-rw-r--r-- | sw/inc/fmtrowsplt.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/fmtrowsplt.hxx b/sw/inc/fmtrowsplt.hxx index 5ac88cca87e0..dd2dceebecd8 100644 --- a/sw/inc/fmtrowsplt.hxx +++ b/sw/inc/fmtrowsplt.hxx @@ -26,10 +26,10 @@ class IntlWrapper; -class SW_DLLPUBLIC SwFmtRowSplit : public SfxBoolItem +class SW_DLLPUBLIC SwFormatRowSplit : public SfxBoolItem { public: - SwFmtRowSplit( bool bSplit = true ) : SfxBoolItem( RES_ROW_SPLIT, bSplit ) {} + SwFormatRowSplit( bool bSplit = true ) : SfxBoolItem( RES_ROW_SPLIT, bSplit ) {} // "pure virtual methods" of SfxPoolItem virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE; @@ -40,10 +40,10 @@ public: const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE; }; -inline const SwFmtRowSplit &SwAttrSet::GetRowSplit(bool bInP) const - { return static_cast<const SwFmtRowSplit&>(Get( RES_ROW_SPLIT,bInP)); } +inline const SwFormatRowSplit &SwAttrSet::GetRowSplit(bool bInP) const + { return static_cast<const SwFormatRowSplit&>(Get( RES_ROW_SPLIT,bInP)); } -inline const SwFmtRowSplit &SwFmt::GetRowSplit(bool bInP) const +inline const SwFormatRowSplit &SwFormat::GetRowSplit(bool bInP) const { return m_aSet.GetRowSplit(bInP); } #endif |