summaryrefslogtreecommitdiff
path: root/sw/inc/frmatr.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-04-30 20:24:30 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-04-30 22:35:56 +0000
commitd564a5b8a933e8a3c5bcc46a215d12f36cb4f916 (patch)
tree90927963c1af2ac8b6b0450db6610e7989bf8aff /sw/inc/frmatr.hxx
parent415c62dc3c3e66f837ec0c89c5bc2d65e17641a7 (diff)
sw: prefix members of SwFmt
Change-Id: I78efb852e5a240c90d3f8e70a3c0a358030c0dde Reviewed-on: https://gerrit.libreoffice.org/15578 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/frmatr.hxx')
-rw-r--r--sw/inc/frmatr.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sw/inc/frmatr.hxx b/sw/inc/frmatr.hxx
index ae826122cbb2..4a68855a734b 100644
--- a/sw/inc/frmatr.hxx
+++ b/sw/inc/frmatr.hxx
@@ -70,31 +70,31 @@ inline const SdrTextVertAdjustItem &SwAttrSet::GetTextVertAdjust(bool bInP) cons
// Implementation of FrameAttribute methods of SwFmt.
inline const SvxPaperBinItem &SwFmt::GetPaperBin(bool bInP) const
- { return aSet.GetPaperBin(bInP); }
+ { return m_aSet.GetPaperBin(bInP); }
inline const SvxLRSpaceItem &SwFmt::GetLRSpace(bool bInP) const
- { return aSet.GetLRSpace(bInP); }
+ { return m_aSet.GetLRSpace(bInP); }
inline const SvxULSpaceItem &SwFmt::GetULSpace(bool bInP) const
- { return aSet.GetULSpace(bInP); }
+ { return m_aSet.GetULSpace(bInP); }
inline const SvxPrintItem &SwFmt::GetPrint(bool bInP) const
- { return aSet.GetPrint(bInP); }
+ { return m_aSet.GetPrint(bInP); }
inline const SvxOpaqueItem &SwFmt::GetOpaque(bool bInP) const
- { return aSet.GetOpaque(bInP); }
+ { return m_aSet.GetOpaque(bInP); }
inline const SvxProtectItem &SwFmt::GetProtect(bool bInP) const
- { return aSet.GetProtect(bInP); }
+ { return m_aSet.GetProtect(bInP); }
inline const SvxBoxItem &SwFmt::GetBox(bool bInP) const
- { return aSet.GetBox(bInP); }
+ { return m_aSet.GetBox(bInP); }
inline const SvxFmtKeepItem &SwFmt::GetKeep(bool bInP) const
- { return aSet.GetKeep(bInP); }
+ { return m_aSet.GetKeep(bInP); }
inline const SvxShadowItem &SwFmt::GetShadow(bool bInP) const
- { return aSet.GetShadow(bInP); }
+ { return m_aSet.GetShadow(bInP); }
inline const SvxFmtBreakItem &SwFmt::GetBreak(bool bInP) const
- { return aSet.GetBreak(bInP); }
+ { return m_aSet.GetBreak(bInP); }
inline const SvxMacroItem &SwFmt::GetMacro(bool bInP) const
- { return aSet.GetMacro(bInP); }
+ { return m_aSet.GetMacro(bInP); }
inline const SvxFrameDirectionItem &SwFmt::GetFrmDir(bool bInP) const
- { return aSet.GetFrmDir(bInP); }
+ { return m_aSet.GetFrmDir(bInP); }
inline const SdrTextVertAdjustItem &SwFmt::GetTextVertAdjust(bool bInP) const
- { return aSet.GetTextVertAdjust(bInP); }
+ { return m_aSet.GetTextVertAdjust(bInP); }
#endif // INCLUDED_SW_INC_FRMATR_HXX