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/fmteiro.hxx | |
parent | 0db96caf0fcce09b87621c11b584a6d81cc7df86 (diff) |
bin/rename-sw-abbreviations.shlibreoffice-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/fmteiro.hxx')
-rw-r--r-- | sw/inc/fmteiro.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/fmteiro.hxx b/sw/inc/fmteiro.hxx index 6c4045ca1994..6d2625579bd5 100644 --- a/sw/inc/fmteiro.hxx +++ b/sw/inc/fmteiro.hxx @@ -26,10 +26,10 @@ class IntlWrapper; -class SW_DLLPUBLIC SwFmtEditInReadonly : public SfxBoolItem +class SW_DLLPUBLIC SwFormatEditInReadonly : public SfxBoolItem { public: - SwFmtEditInReadonly( sal_uInt16 nId = RES_EDIT_IN_READONLY, + SwFormatEditInReadonly( sal_uInt16 nId = RES_EDIT_IN_READONLY, bool bPrt = false ) : SfxBoolItem( nId, bPrt ) {} /// "pure virtual methos" of SfxPoolItem @@ -42,10 +42,10 @@ public: void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE; }; -inline const SwFmtEditInReadonly &SwAttrSet::GetEditInReadonly(bool bInP) const - { return static_cast<const SwFmtEditInReadonly&>(Get( RES_EDIT_IN_READONLY,bInP)); } +inline const SwFormatEditInReadonly &SwAttrSet::GetEditInReadonly(bool bInP) const + { return static_cast<const SwFormatEditInReadonly&>(Get( RES_EDIT_IN_READONLY,bInP)); } -inline const SwFmtEditInReadonly &SwFmt::GetEditInReadonly(bool bInP) const +inline const SwFormatEditInReadonly &SwFormat::GetEditInReadonly(bool bInP) const { return m_aSet.GetEditInReadonly(bInP); } #endif |