diff options
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/inc/codegen.hxx | 4 | ||||
-rw-r--r-- | basic/source/inc/sbunoobj.hxx | 6 | ||||
-rw-r--r-- | basic/source/inc/symtbl.hxx | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/basic/source/inc/codegen.hxx b/basic/source/inc/codegen.hxx index 1b928cca5114..d50994be5e09 100644 --- a/basic/source/inc/codegen.hxx +++ b/basic/source/inc/codegen.hxx @@ -66,8 +66,8 @@ class PCodeBuffConvertor sal_uInt8* m_pCnvtdBuf; S m_nCnvtdSize; - PCodeBuffConvertor(const PCodeBuffConvertor& ) SAL_DELETED_FUNCTION; - PCodeBuffConvertor& operator = ( const PCodeBuffConvertor& ) SAL_DELETED_FUNCTION; + PCodeBuffConvertor(const PCodeBuffConvertor& ) = delete; + PCodeBuffConvertor& operator = ( const PCodeBuffConvertor& ) = delete; public: PCodeBuffConvertor( sal_uInt8* pCode, T nSize ): m_nSize( nSize ), m_pStart( pCode ), m_pCnvtdBuf( NULL ), m_nCnvtdSize( 0 ){ convert(); } S GetSize(){ return m_nCnvtdSize; } diff --git a/basic/source/inc/sbunoobj.hxx b/basic/source/inc/sbunoobj.hxx index bead0c9873e6..692e5140aefa 100644 --- a/basic/source/inc/sbunoobj.hxx +++ b/basic/source/inc/sbunoobj.hxx @@ -192,8 +192,8 @@ class SbUnoProperty : public SbxProperty SbxDataType mRealType; virtual ~SbUnoProperty(); bool mbUnoStruct; - SbUnoProperty( const SbUnoProperty&) SAL_DELETED_FUNCTION; - SbUnoProperty& operator = ( const SbUnoProperty&) SAL_DELETED_FUNCTION; + SbUnoProperty( const SbUnoProperty&) = delete; + SbUnoProperty& operator = ( const SbUnoProperty&) = delete; public: TYPEINFO_OVERRIDE(); @@ -395,7 +395,7 @@ private: VBAConstantsHash aConstHash; bool isInited; VBAConstantHelper():isInited( false ) {} - VBAConstantHelper(const VBAConstantHelper&) SAL_DELETED_FUNCTION; + VBAConstantHelper(const VBAConstantHelper&) = delete; void init(); public: static VBAConstantHelper& instance(); diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx index 2682eee31d19..e4e84fe6a6a6 100644 --- a/basic/source/inc/symtbl.hxx +++ b/basic/source/inc/symtbl.hxx @@ -159,7 +159,7 @@ public: sal_uInt32 Reference(); // reference symbol in code private: - SbiSymDef( const SbiSymDef& ) SAL_DELETED_FUNCTION; + SbiSymDef( const SbiSymDef& ) = delete; }; @@ -202,7 +202,7 @@ public: void Match( SbiProcDef* pForward ); private: - SbiProcDef( const SbiProcDef& ) SAL_DELETED_FUNCTION; + SbiProcDef( const SbiProcDef& ) = delete; }; |