summaryrefslogtreecommitdiff
path: root/lotuswordpro/inc/xfilter/xfmargins.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/inc/xfilter/xfmargins.hxx')
-rw-r--r--lotuswordpro/inc/xfilter/xfmargins.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/inc/xfilter/xfmargins.hxx b/lotuswordpro/inc/xfilter/xfmargins.hxx
index 2705304d3004..0ee890c7f9d8 100644
--- a/lotuswordpro/inc/xfilter/xfmargins.hxx
+++ b/lotuswordpro/inc/xfilter/xfmargins.hxx
@@ -78,8 +78,8 @@ public:
void SetTop(double top);
void SetBottom(double bottom);
- double GetLeft();
- double GetTop();
+ double GetLeft() const;
+ double GetTop() const;
void ToXml(IXFStream *pStrm);
@@ -117,12 +117,12 @@ inline void XFMargins::SetBottom(double bottom)
m_nFlag |= XFMARGINS_FLAG_BOTTOM;
}
-inline double XFMargins::GetLeft()
+inline double XFMargins::GetLeft() const
{
return m_fLeft;
}
-inline double XFMargins::GetTop()
+inline double XFMargins::GetTop() const
{
return m_fTop;
}