diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:32:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:36:04 +0100 |
commit | 1daa046c998dcec41d4907b260a6b3abfcfa62a8 (patch) | |
tree | d2bcef146ffc4068a6eca7c4655f3182eaf2fc12 /include/toolkit | |
parent | 16f52ab232fbd11298d6c0d9cfed0dabc4a77dd1 (diff) |
loplugin:deletedspecial
Change-Id: I2e21490b975472952b7ffef3e6b865343f8aac7e
Diffstat (limited to 'include/toolkit')
-rw-r--r-- | include/toolkit/awt/vclxspinbutton.hxx | 4 | ||||
-rw-r--r-- | include/toolkit/controls/unocontrols.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/toolkit/awt/vclxspinbutton.hxx b/include/toolkit/awt/vclxspinbutton.hxx index ea6c862892ff..1c999a9ba43b 100644 --- a/include/toolkit/awt/vclxspinbutton.hxx +++ b/include/toolkit/awt/vclxspinbutton.hxx @@ -80,8 +80,8 @@ namespace toolkit void ProcessWindowEvent( const VclWindowEvent& _rVclWindowEvent ) SAL_OVERRIDE; private: - VCLXSpinButton( const VCLXSpinButton& ); // never implemented - VCLXSpinButton& operator=( const VCLXSpinButton& ); // never implemented + VCLXSpinButton( const VCLXSpinButton& ) SAL_DELETED_FUNCTION; + VCLXSpinButton& operator=( const VCLXSpinButton& ) SAL_DELETED_FUNCTION; }; diff --git a/include/toolkit/controls/unocontrols.hxx b/include/toolkit/controls/unocontrols.hxx index 5952cd6dcbb3..079f70671565 100644 --- a/include/toolkit/controls/unocontrols.hxx +++ b/include/toolkit/controls/unocontrols.hxx @@ -244,7 +244,7 @@ protected: ::com::sun::star::uno::Any ImplGetDefaultValue( sal_uInt16 nPropId ) const SAL_OVERRIDE; private: - GraphicControlModel& operator=( const GraphicControlModel& ); // never implemented + GraphicControlModel& operator=( const GraphicControlModel& ) SAL_DELETED_FUNCTION; }; |