Kaydet (Commit) 2369b232 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Replace SAL_DELETED_FUNCTION with = delete in internal code

Change-Id: I23399a4d1869635c8b6ffeb25bd183b0504b448d
Reviewed-on: https://gerrit.libreoffice.org/60801
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst d7a3b76f
...@@ -109,10 +109,8 @@ private: ...@@ -109,10 +109,8 @@ private:
detail::element_alias2 aData; detail::element_alias2 aData;
sal_Int32 nRemain; sal_Int32 nRemain;
OInterfaceIteratorHelper2( const OInterfaceIteratorHelper2 & ) OInterfaceIteratorHelper2( const OInterfaceIteratorHelper2 & ) = delete;
SAL_DELETED_FUNCTION; OInterfaceIteratorHelper2 & operator = ( const OInterfaceIteratorHelper2 & ) = delete;
OInterfaceIteratorHelper2 & operator = ( const OInterfaceIteratorHelper2 & )
SAL_DELETED_FUNCTION;
}; };
...@@ -235,10 +233,8 @@ friend class OInterfaceIteratorHelper2; ...@@ -235,10 +233,8 @@ friend class OInterfaceIteratorHelper2;
/** TRUE -> aData.pAsVector is of type Sequence< XInterfaceSequence >. */ /** TRUE -> aData.pAsVector is of type Sequence< XInterfaceSequence >. */
bool bIsList; bool bIsList;
OInterfaceContainerHelper2( const OInterfaceContainerHelper2 & ) OInterfaceContainerHelper2( const OInterfaceContainerHelper2 & ) = delete;
SAL_DELETED_FUNCTION; OInterfaceContainerHelper2 & operator = ( const OInterfaceContainerHelper2 & ) = delete;
OInterfaceContainerHelper2 & operator = ( const OInterfaceContainerHelper2 & )
SAL_DELETED_FUNCTION;
/* /*
Duplicate content of the container and release the old one without destroying. Duplicate content of the container and release the old one without destroying.
......
...@@ -32,7 +32,7 @@ class VCL_DLLPUBLIC Scheduler final ...@@ -32,7 +32,7 @@ class VCL_DLLPUBLIC Scheduler final
{ {
friend class SchedulerGuard; friend class SchedulerGuard;
friend class Task; friend class Task;
Scheduler() SAL_DELETED_FUNCTION; Scheduler() = delete;
static inline void UpdateSystemTimer( ImplSchedulerContext &rSchedCtx, static inline void UpdateSystemTimer( ImplSchedulerContext &rSchedCtx,
sal_uInt64 nMinPeriod, sal_uInt64 nMinPeriod,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment