summaryrefslogtreecommitdiff
path: root/sc/inc/linkuno.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/linkuno.hxx')
-rw-r--r--sc/inc/linkuno.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sc/inc/linkuno.hxx b/sc/inc/linkuno.hxx
index 1570039607f9..38319c46b644 100644
--- a/sc/inc/linkuno.hxx
+++ b/sc/inc/linkuno.hxx
@@ -56,7 +56,7 @@ class ScSheetLinkObj : public cppu::WeakImplHelper<
public SfxListener
{
private:
- SfxItemPropertySet aPropSet;
+ SfxItemPropertySet const aPropSet;
ScDocShell* pDocShell;
OUString aFileName;
XRefreshListenerArr_Impl aRefreshListeners;
@@ -162,9 +162,9 @@ class ScAreaLinkObj : public cppu::WeakImplHelper<
public SfxListener
{
private:
- SfxItemPropertySet aPropSet;
- ScDocShell* pDocShell;
- size_t nPos;
+ SfxItemPropertySet const aPropSet;
+ ScDocShell* pDocShell;
+ size_t const nPos;
XRefreshListenerArr_Impl aRefreshListeners;
void Modify_Impl( const OUString* pNewFile, const OUString* pNewFilter,
@@ -275,10 +275,10 @@ class ScDDELinkObj : public cppu::WeakImplHelper<
public SfxListener
{
private:
- ScDocShell* pDocShell;
- OUString aAppl;
- OUString aTopic;
- OUString aItem;
+ ScDocShell* pDocShell;
+ OUString const aAppl;
+ OUString const aTopic;
+ OUString const aItem;
XRefreshListenerArr_Impl aRefreshListeners;
void Refreshed_Impl();
@@ -388,7 +388,7 @@ private:
private:
ScDocShell* mpDocShell;
ScExternalRefCache::TableTypeRef mpTable;
- size_t mnIndex;
+ size_t const mnIndex;
};
class ScExternalDocLinkObj : public cppu::WeakImplHelper< css::sheet::XExternalDocLink >
@@ -422,9 +422,9 @@ public:
virtual sal_Int32 SAL_CALL getTokenIndex() override;
private:
- ScDocShell* mpDocShell;
+ ScDocShell* const mpDocShell;
ScExternalRefManager* mpRefMgr;
- sal_uInt16 mnFileId;
+ sal_uInt16 const mnFileId;
};
/** This is the UNO API equivalent of ScExternalRefManager. */
@@ -459,7 +459,7 @@ private:
ScExternalDocLinksObj(const ScExternalDocLinksObj&) = delete;
private:
- ScDocShell* mpDocShell;
+ ScDocShell* const mpDocShell;
ScExternalRefManager* mpRefMgr;
};