summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-18 12:40:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-18 14:40:57 +0200
commit159b26e419f1642abe84d7bdc6b7de52fb1b2fb6 (patch)
tree74d5df10af806fc276204160a44093b376ba09eb /sc/inc
parentUpdated core (diff)
downloadcore-159b26e419f1642abe84d7bdc6b7de52fb1b2fb6.tar.gz
core-159b26e419f1642abe84d7bdc6b7de52fb1b2fb6.zip
use rtl::Reference in sc/../uno/*
instead of manual reference counting Change-Id: I60798316f2b63800a9f539cb719305c00d91ecc5 Reviewed-on: https://gerrit.libreoffice.org/43491 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/dapiuno.hxx6
-rw-r--r--sc/inc/textuno.hxx14
2 files changed, 10 insertions, 10 deletions
diff --git a/sc/inc/dapiuno.hxx b/sc/inc/dapiuno.hxx
index ab766f7e60f2..1f183501c9ba 100644
--- a/sc/inc/dapiuno.hxx
+++ b/sc/inc/dapiuno.hxx
@@ -336,7 +336,7 @@ protected:
ScDocShell* GetDocShell() const;
protected:
- ScDataPilotDescriptorBase& mrParent;
+ rtl::Reference<ScDataPilotDescriptorBase> mxParent;
ScFieldIdentifier maFieldId;
private:
@@ -615,7 +615,7 @@ public:
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
private:
- ScDataPilotFieldGroupsObj& mrParent;
+ rtl::Reference<ScDataPilotFieldGroupsObj> mxParent;
OUString maGroupName;
};
@@ -642,7 +642,7 @@ public:
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
private:
- ScDataPilotFieldGroupObj& mrParent;
+ rtl::Reference<ScDataPilotFieldGroupObj> mxParent;
OUString maName;
};
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index 0a33daa6a3f0..0d72c9b95008 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -217,14 +217,14 @@ public:
class ScCellTextCursor : public SvxUnoTextCursor
{
- ScCellObj& rTextObj;
+ rtl::Reference<ScCellObj> mxTextObj;
public:
ScCellTextCursor(const ScCellTextCursor& rOther);
ScCellTextCursor(ScCellObj& rText);
- virtual ~ScCellTextCursor() throw() override;
+ virtual ~ScCellTextCursor() throw() override;
- ScCellObj& GetCellObj() const { return rTextObj; }
+ ScCellObj& GetCellObj() const { return *mxTextObj; }
// SvxUnoTextCursor methods reimplemented here:
virtual css::uno::Reference< css::text::XText > SAL_CALL
@@ -248,7 +248,7 @@ private:
public:
ScHeaderFooterTextCursor(rtl::Reference<ScHeaderFooterTextObj> const & rText);
- virtual ~ScHeaderFooterTextCursor() throw() override;
+ virtual ~ScHeaderFooterTextCursor() throw() override;
// SvxUnoTextCursor methods reimplemented here:
virtual css::uno::Reference< css::text::XText > SAL_CALL
@@ -314,7 +314,7 @@ class ScEditEngineTextObj : public ScSimpleEditSourceHelper, public SvxUnoText
{
public:
ScEditEngineTextObj();
- virtual ~ScEditEngineTextObj() throw() override;
+ virtual ~ScEditEngineTextObj() throw() override;
void SetText( const EditTextObject& rTextObject );
EditTextObject* CreateTextObject();
@@ -359,8 +359,8 @@ public:
class ScCellTextObj : public ScCellTextData, public SvxUnoText
{
public:
- ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);
- virtual ~ScCellTextObj() throw() override;
+ ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);
+ virtual ~ScCellTextObj() throw() override;
};
#endif