summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2016-12-05 21:40:04 +0100
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2016-12-07 13:55:58 +0000
commit48a6d928e66e6a6017002670720b25d34b14167f (patch)
treeefb934b6108c0a48463a5252c6ac5d5f9f4da7c2 /sw/inc
parentaa91c69b9bcd9481e263c63afd66afcda0577b6b (diff)
use proper message passing
Change-Id: I0e8b9cecec0799512b8c5b391de3bc2fcf7655e6 Reviewed-on: https://gerrit.libreoffice.org/31655 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/frmfmt.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx
index 6c5b3c3dad3e..0d3cac0f8f3c 100644
--- a/sw/inc/frmfmt.hxx
+++ b/sw/inc/frmfmt.hxx
@@ -259,8 +259,9 @@ namespace sw
};
struct SW_DLLPUBLIC ContactChangedHint final: SfxHint
{
- SdrObject* m_pObject;
- ContactChangedHint(SdrObject* pObject) : m_pObject(pObject) {};
+ SdrObject** m_ppObject;
+ ContactChangedHint() : m_ppObject(nullptr) {};
+ ContactChangedHint(SdrObject** ppObject) : m_ppObject(ppObject) {};
virtual ~ContactChangedHint() override;
};
}