diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2016-12-24 02:10:25 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2016-12-24 12:09:08 +0000 |
commit | 09a0a1d760c9786c0cfb0911244892538838a284 (patch) | |
tree | 1c349727221d9acfea75a16933e582401d8ca495 /sw/inc/frmfmt.hxx | |
parent | 604cf7024fce29143150ab77b2f14b59a45e61eb (diff) |
use proper message passing
Change-Id: I00b0446b1e5a1226566f4520ea45773251d61265
Reviewed-on: https://gerrit.libreoffice.org/32391
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'sw/inc/frmfmt.hxx')
-rw-r--r-- | sw/inc/frmfmt.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index b24536e830a6..f1ebc09e8c2c 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -236,6 +236,8 @@ public: class SwDrawFrameFormat; +class SwDrawContact; + namespace sw { enum class DrawFrameFormatHintId { @@ -302,6 +304,12 @@ namespace sw RestoreFlyAnchorHint(Point aPos) : m_aPos(aPos) {}; virtual ~RestoreFlyAnchorHint() override; }; + struct SW_DLLPUBLIC CreatePortionHint final : SfxHint + { + SwDrawContact** m_ppContact; + CreatePortionHint(SwDrawContact** ppContact) : m_ppContact(ppContact) {}; + virtual ~CreatePortionHint() override; + }; } class SW_DLLPUBLIC SwDrawFrameFormat: public SwFrameFormat |