summaryrefslogtreecommitdiff
path: root/sw/inc/frmfmt.hxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2017-01-03 02:01:48 +0100
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2017-01-03 10:52:00 +0000
commit2f01d2a42a5afecd7827a939cd0f5d6793cba47e (patch)
tree24b6f257955efa2fde5abcfd3d84847e8a1b4930 /sw/inc/frmfmt.hxx
parente4a84c625f28b947816b07654fbe912a466b824a (diff)
use proper message passing
Change-Id: Id0ac2e87344fdab4db97357158c5cc60eed70898 Reviewed-on: https://gerrit.libreoffice.org/32663 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.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx
index c9f869e6e1cd..6c1e2daa1b90 100644
--- a/sw/inc/frmfmt.hxx
+++ b/sw/inc/frmfmt.hxx
@@ -329,6 +329,12 @@ namespace sw
CollectTextObjectsHint(std::list<SdrTextObj*>& rTextObjects) : m_rTextObjects(rTextObjects) {};
virtual ~CollectTextObjectsHint() override;
};
+ struct SW_DLLPUBLIC GetZOrderHint final : SfxHint
+ {
+ sal_uInt32& m_rnZOrder;
+ GetZOrderHint(sal_uInt32& rnZOrder) : m_rnZOrder(rnZOrder) {};
+ virtual ~GetZOrderHint() override;
+ };
}
class SW_DLLPUBLIC SwDrawFrameFormat: public SwFrameFormat