summaryrefslogtreecommitdiff
path: root/include/comphelper/MasterPropertySet.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-08 14:16:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-09 07:28:54 +0100
commit4be2af1e932a5ad7645af3044f509bc8006da91d (patch)
treec9ccec5aad0721bf323f64d7046f254cf3f42d76 /include/comphelper/MasterPropertySet.hxx
parentc40d9ecd912a777ee25c6da6fbd2564b0d43a9b9 (diff)
use rtl::Reference for SlaveData
Change-Id: I0cc0455a97be2e0cd84ccadba1f3745b584e1f33 Reviewed-on: https://gerrit.libreoffice.org/44461 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper/MasterPropertySet.hxx')
-rw-r--r--include/comphelper/MasterPropertySet.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/comphelper/MasterPropertySet.hxx b/include/comphelper/MasterPropertySet.hxx
index 44472d4c3977..81249fbc6ebd 100644
--- a/include/comphelper/MasterPropertySet.hxx
+++ b/include/comphelper/MasterPropertySet.hxx
@@ -34,9 +34,8 @@ namespace comphelper
class ChainablePropertySet;
struct SlaveData
{
- ChainablePropertySet * mpSlave;
- css::uno::Reference < css::beans::XPropertySet > mxSlave;
- bool mbInit;
+ rtl::Reference < ChainablePropertySet > mxSlave;
+ bool mbInit;
SlaveData ( ChainablePropertySet *pSlave);
bool IsInit () const { return mbInit;}