summaryrefslogtreecommitdiffstats
path: root/sw/source/core/text/porfly.hxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2016-12-19 05:28:44 +0100
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2016-12-22 11:19:11 +0000
commit404e4f55ab513a17ed5f9e47fc6fb9656bea9f2b (patch)
treea5a39dc25b7f0aed66decdcd9e0a7d51d750e720 /sw/source/core/text/porfly.hxx
parentvalgrind: stick 0 at end of successfully read data (diff)
downloadcore-404e4f55ab513a17ed5f9e47fc6fb9656bea9f2b.tar.gz
core-404e4f55ab513a17ed5f9e47fc6fb9656bea9f2b.zip
inline some trivial functions
Change-Id: I327dbc236db9462b3cb3d24e2c6abca1ef4cddf4 Reviewed-on: https://gerrit.libreoffice.org/32149 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'sw/source/core/text/porfly.hxx')
-rw-r--r--sw/source/core/text/porfly.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/source/core/text/porfly.hxx b/sw/source/core/text/porfly.hxx
index 382d4ea67eb2..0e3d6fdf7a9f 100644
--- a/sw/source/core/text/porfly.hxx
+++ b/sw/source/core/text/porfly.hxx
@@ -22,6 +22,7 @@
#include <ascharanchoredobjectposition.hxx>
#include "porglue.hxx"
+#include "flyfrms.hxx"
class SwDrawContact;
class SwFlyInContentFrame;
@@ -62,7 +63,7 @@ public:
virtual bool Format(SwTextFormatInfo& rInf) override;
OUTPUT_OPERATOR_OVERRIDE
virtual bool IsDraw() const =0;
- virtual ~SwFlyCntPortion() override;
+ virtual ~SwFlyCntPortion() override {};
};
namespace sw
@@ -76,7 +77,7 @@ namespace sw
static FlyContentPortion* Create(const SwTextFrame& rFrame, SwFlyInContentFrame* pFly, const Point& rBase, long nAscent, long nDescent, long nFlyAsc, long nFlyDesc, AsCharFlags nFlags);
inline SwFlyInContentFrame *GetFlyFrame() { return m_pFly; }
inline const SwFlyInContentFrame *GetFlyFrame() const { return m_pFly; }
- void GetFlyCursorOfst(Point& rPoint, SwPosition& rPos, SwCursorMoveState* pCMS) const;
+ void GetFlyCursorOfst(Point& rPoint, SwPosition& rPos, SwCursorMoveState* pCMS) const { m_pFly->GetCursorOfst(&rPos, rPoint, pCMS); };
virtual bool IsDraw() const override { return false; }
virtual void Paint(const SwTextPaintInfo& rInf) const override;
virtual ~FlyContentPortion() override;