summaryrefslogtreecommitdiff
path: root/sw/inc/fmtornt.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/fmtornt.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/fmtornt.hxx')
-rw-r--r--sw/inc/fmtornt.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/fmtornt.hxx b/sw/inc/fmtornt.hxx
index df33db016824..cde5b958d595 100644
--- a/sw/inc/fmtornt.hxx
+++ b/sw/inc/fmtornt.hxx
@@ -125,9 +125,9 @@ inline const SwFmtHoriOrient &SwAttrSet::GetHoriOrient(bool bInP) const
{ return static_cast<const SwFmtHoriOrient&>(Get( RES_HORI_ORIENT,bInP)); }
inline const SwFmtVertOrient &SwFmt::GetVertOrient(bool bInP) const
- { return aSet.GetVertOrient(bInP); }
+ { return m_aSet.GetVertOrient(bInP); }
inline const SwFmtHoriOrient &SwFmt::GetHoriOrient(bool bInP) const
- { return aSet.GetHoriOrient(bInP); }
+ { return m_aSet.GetHoriOrient(bInP); }
#endif