summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpbasetype.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-09 10:09:42 +0200
committerNoel Grandin <noel@peralex.com>2014-06-09 10:10:13 +0200
commit184a00b96235f6432294ded63ce4a4a318effdb5 (patch)
treee4ae0e00cb168fa43d280cfb51a50515258b5320 /lotuswordpro/source/filter/lwpbasetype.hxx
parent534015ad4fd08823b4393dab1ad5d42dedd7bf62 (diff)
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'lotuswordpro/source/filter/lwpbasetype.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpbasetype.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpbasetype.hxx b/lotuswordpro/source/filter/lwpbasetype.hxx
index 7a2359d4ec84..e12297e03d9a 100644
--- a/lotuswordpro/source/filter/lwpbasetype.hxx
+++ b/lotuswordpro/source/filter/lwpbasetype.hxx
@@ -112,8 +112,8 @@ public:
LwpPoint();
void Read(LwpObjectStream *pStrm);
void Reset();
- inline sal_Int32 GetX() const;
- inline sal_Int32 GetY() const;
+ sal_Int32 GetX() const {return m_nX;}
+ sal_Int32 GetY() const {return m_nY;}
inline void SetX(sal_Int32 nX);
inline void SetY(sal_Int32 nY);
protected:
@@ -121,8 +121,6 @@ protected:
sal_Int32 m_nY;
};
-sal_Int32 LwpPoint::GetX() const {return m_nX;}
-sal_Int32 LwpPoint::GetY() const {return m_nY;}
void LwpPoint::SetX(sal_Int32 nX){m_nX = nX;}
void LwpPoint::SetY(sal_Int32 nY){m_nY = nY;}