summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/smarttag.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 /sd/source/ui/inc/smarttag.hxx
parent27491c28cb67ada0a4c5eaa90eaf589425990582 (diff)
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'sd/source/ui/inc/smarttag.hxx')
-rw-r--r--sd/source/ui/inc/smarttag.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/inc/smarttag.hxx b/sd/source/ui/inc/smarttag.hxx
index 291c600a1cdb..fc3d996b1b98 100644
--- a/sd/source/ui/inc/smarttag.hxx
+++ b/sd/source/ui/inc/smarttag.hxx
@@ -85,8 +85,8 @@ protected:
bool mbSelected;
private:
- SmartTag( const SmartTag& ) SAL_DELETED_FUNCTION;
- SmartTag& operator=( const SmartTag& ) SAL_DELETED_FUNCTION;
+ SmartTag( const SmartTag& ) = delete;
+ SmartTag& operator=( const SmartTag& ) = delete;
};
typedef rtl::Reference< SmartTag > SmartTagReference;
@@ -142,8 +142,8 @@ public:
void CheckPossibilities();
private:
- SmartTagSet( const SmartTagSet& ) SAL_DELETED_FUNCTION;
- SmartTagSet& operator=( const SmartTagSet& ) SAL_DELETED_FUNCTION;
+ SmartTagSet( const SmartTagSet& ) = delete;
+ SmartTagSet& operator=( const SmartTagSet& ) = delete;
/** adds a new smart tag to this set */
void add( const SmartTagReference& xTag );