summaryrefslogtreecommitdiff
path: root/sw/inc/unochart.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 /sw/inc/unochart.hxx
parent27491c28cb67ada0a4c5eaa90eaf589425990582 (diff)
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'sw/inc/unochart.hxx')
-rw-r--r--sw/inc/unochart.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/unochart.hxx b/sw/inc/unochart.hxx
index 678d29456359..72ce273cde97 100644
--- a/sw/inc/unochart.hxx
+++ b/sw/inc/unochart.hxx
@@ -77,8 +77,8 @@ class SwChartLockController_Helper
Timer aUnlockTimer; // timer to unlock chart controllers
bool bIsLocked;
- SwChartLockController_Helper( const SwChartLockController_Helper & ) SAL_DELETED_FUNCTION;
- SwChartLockController_Helper & operator = ( const SwChartLockController_Helper & ) SAL_DELETED_FUNCTION;
+ SwChartLockController_Helper( const SwChartLockController_Helper & ) = delete;
+ SwChartLockController_Helper & operator = ( const SwChartLockController_Helper & ) = delete;
void LockUnlockAllCharts( bool bLock );
void LockAllCharts() { LockUnlockAllCharts( true ); };
@@ -139,8 +139,8 @@ class SwChartDataProvider :
const SwDoc * pDoc;
bool bDisposed;
- SwChartDataProvider( const SwChartDataProvider & ) SAL_DELETED_FUNCTION;
- SwChartDataProvider & operator = ( const SwChartDataProvider & ) SAL_DELETED_FUNCTION;
+ SwChartDataProvider( const SwChartDataProvider & ) = delete;
+ SwChartDataProvider & operator = ( const SwChartDataProvider & ) = delete;
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSource > SAL_CALL Impl_createDataSource( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArguments, bool bTestOnly = false )
throw (::com::sun::star::lang::IllegalArgumentException,
@@ -217,8 +217,8 @@ class SwChartDataSource :
com::sun::star::uno::Reference<
com::sun::star::chart2::data::XLabeledDataSequence > > aLDS;
- SwChartDataSource( const SwChartDataSource & ) SAL_DELETED_FUNCTION;
- SwChartDataSource & operator = ( const SwChartDataSource & ) SAL_DELETED_FUNCTION;
+ SwChartDataSource( const SwChartDataSource & ) = delete;
+ SwChartDataSource & operator = ( const SwChartDataSource & ) = delete;
public:
SwChartDataSource( const com::sun::star::uno::Sequence< com::sun::star::uno::Reference< com::sun::star::chart2::data::XLabeledDataSequence > > &rLDS );
@@ -271,7 +271,7 @@ class SwChartDataSequence :
bool bDisposed;
SwChartDataSequence( const SwChartDataSequence &rObj );
- SwChartDataSequence & operator = ( const SwChartDataSequence & ) SAL_DELETED_FUNCTION;
+ SwChartDataSequence & operator = ( const SwChartDataSequence & ) = delete;
protected:
//SwClient
@@ -373,8 +373,8 @@ class SwChartLabeledDataSequence :
bool bDisposed;
- SwChartLabeledDataSequence( const SwChartLabeledDataSequence & ) SAL_DELETED_FUNCTION;
- SwChartLabeledDataSequence & operator = ( const SwChartLabeledDataSequence & ) SAL_DELETED_FUNCTION;
+ SwChartLabeledDataSequence( const SwChartLabeledDataSequence & ) = delete;
+ SwChartLabeledDataSequence & operator = ( const SwChartLabeledDataSequence & ) = delete;
void SetDataSequence( ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& rxDest, const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& rxSource );