summaryrefslogtreecommitdiffstats
path: root/sc/source/filter
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 /sc/source/filter
parentHAVE_CXX11_DELETE is required on all supported toolchains (diff)
downloadcore-bff4c13475957863bfa7da5bc3bcf82a64a7503a.tar.gz
core-bff4c13475957863bfa7da5bc3bcf82a64a7503a.zip
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/inc/biffhelper.hxx4
-rw-r--r--sc/source/filter/inc/xestream.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/inc/biffhelper.hxx b/sc/source/filter/inc/biffhelper.hxx
index 33d8bd202884..3a0c39c6ad0b 100644
--- a/sc/source/filter/inc/biffhelper.hxx
+++ b/sc/source/filter/inc/biffhelper.hxx
@@ -627,8 +627,8 @@ public:
static bool skipRecordBlock( BiffInputStream& rStrm, sal_uInt16 nEndRecId );
private:
- BiffHelper() SAL_DELETED_FUNCTION;
- ~BiffHelper() SAL_DELETED_FUNCTION;
+ BiffHelper() = delete;
+ ~BiffHelper() = delete;
};
/** BIFF12 stream operator for an OUString, reads 32-bit string length and Unicode array. */
diff --git a/sc/source/filter/inc/xestream.hxx b/sc/source/filter/inc/xestream.hxx
index dce1cd4cc85f..57838a58cd9a 100644
--- a/sc/source/filter/inc/xestream.hxx
+++ b/sc/source/filter/inc/xestream.hxx
@@ -252,8 +252,8 @@ class XclXmlUtils
{
XclXmlUtils();
~XclXmlUtils();
- XclXmlUtils(const XclXmlUtils&) SAL_DELETED_FUNCTION;
- XclXmlUtils& operator=(const XclXmlUtils&) SAL_DELETED_FUNCTION;
+ XclXmlUtils(const XclXmlUtils&) = delete;
+ XclXmlUtils& operator=(const XclXmlUtils&) = delete;
public:
static void GetFormulaTypeAndValue( ScFormulaCell& rCell, const char*& sType, OUString& rValue);
static OUString GetStreamName( const char* sStreamDir, const char* sStream, sal_Int32 nId );