summaryrefslogtreecommitdiff
path: root/include/svl/svdde.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 15:25:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:26 +0200
commitbff4c13475957863bfa7da5bc3bcf82a64a7503a (patch)
tree23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /include/svl/svdde.hxx
parent27491c28cb67ada0a4c5eaa90eaf589425990582 (diff)
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'include/svl/svdde.hxx')
-rw-r--r--include/svl/svdde.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svl/svdde.hxx b/include/svl/svdde.hxx
index 65bb65dd56c0..c634ae135000 100644
--- a/include/svl/svdde.hxx
+++ b/include/svl/svdde.hxx
@@ -127,8 +127,8 @@ private:
friend class DdeInternal;
friend class DdeConnection;
- DdeTransaction( const DdeTransaction& ) SAL_DELETED_FUNCTION;
- const DdeTransaction& operator= ( const DdeTransaction& ) SAL_DELETED_FUNCTION;
+ DdeTransaction( const DdeTransaction& ) = delete;
+ const DdeTransaction& operator= ( const DdeTransaction& ) = delete;
};
@@ -230,8 +230,8 @@ public:
const OUString GetTopicName();
private:
- DdeConnection( const DdeConnection& ) SAL_DELETED_FUNCTION;
- const DdeConnection& operator= ( const DdeConnection& ) SAL_DELETED_FUNCTION;
+ DdeConnection( const DdeConnection& ) = delete;
+ const DdeConnection& operator= ( const DdeConnection& ) = delete;
};
@@ -325,8 +325,8 @@ public:
const std::vector<DdeItem*>& GetItems() const { return aItems; }
private:
- DdeTopic( const DdeTopic& ) SAL_DELETED_FUNCTION;
- const DdeTopic& operator= ( const DdeTopic& ) SAL_DELETED_FUNCTION;
+ DdeTopic( const DdeTopic& ) = delete;
+ const DdeTopic& operator= ( const DdeTopic& ) = delete;
};