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

loplugin:deletedspecial

Change-Id: I80e009f4fc4fcef9df20619ca97783ed1f2e7e6f
üst edbb1b6b
...@@ -39,9 +39,8 @@ class SvxEventConfigPage : public _SvxMacroTabPage ...@@ -39,9 +39,8 @@ class SvxEventConfigPage : public _SvxMacroTabPage
DECL_LINK( SelectHdl_Impl, ListBox* ); DECL_LINK( SelectHdl_Impl, ListBox* );
// Forbidden and not implemented. SvxEventConfigPage (const SvxEventConfigPage &) SAL_DELETED_FUNCTION;
SvxEventConfigPage (const SvxEventConfigPage &); SvxEventConfigPage & operator= (const SvxEventConfigPage &) SAL_DELETED_FUNCTION;
SvxEventConfigPage & operator= (const SvxEventConfigPage &);
public: public:
......
...@@ -39,9 +39,8 @@ class SvxJSearchOptionsDialog : public SfxSingleTabDialog ...@@ -39,9 +39,8 @@ class SvxJSearchOptionsDialog : public SfxSingleTabDialog
sal_Int32 nInitialTlFlags; sal_Int32 nInitialTlFlags;
SvxJSearchOptionsPage *pPage; SvxJSearchOptionsPage *pPage;
// disallow copy-constructor and assignment-operator for now SvxJSearchOptionsDialog( const SvxJSearchOptionsDialog & ) SAL_DELETED_FUNCTION;
SvxJSearchOptionsDialog( const SvxJSearchOptionsDialog & ); SvxJSearchOptionsDialog & operator == ( const SvxJSearchOptionsDialog & ) SAL_DELETED_FUNCTION;
SvxJSearchOptionsDialog & operator == ( const SvxJSearchOptionsDialog & );
public: public:
SvxJSearchOptionsDialog(vcl::Window *pParent, SvxJSearchOptionsDialog(vcl::Window *pParent,
......
...@@ -32,9 +32,8 @@ class PasswordToOpenModifyDialog : public SfxModalDialog ...@@ -32,9 +32,8 @@ class PasswordToOpenModifyDialog : public SfxModalDialog
{ {
std::unique_ptr< PasswordToOpenModifyDialog_Impl > m_pImpl; std::unique_ptr< PasswordToOpenModifyDialog_Impl > m_pImpl;
// disallow use of copy c-tor and assignment operator PasswordToOpenModifyDialog( const PasswordToOpenModifyDialog & ) SAL_DELETED_FUNCTION;
PasswordToOpenModifyDialog( const PasswordToOpenModifyDialog & ); PasswordToOpenModifyDialog & operator = ( const PasswordToOpenModifyDialog & ) SAL_DELETED_FUNCTION;
PasswordToOpenModifyDialog & operator = ( const PasswordToOpenModifyDialog & );
public: public:
PasswordToOpenModifyDialog( vcl::Window * pParent, sal_uInt16 nMinPasswdLen, PasswordToOpenModifyDialog( vcl::Window * pParent, sal_uInt16 nMinPasswdLen,
......
...@@ -34,12 +34,10 @@ class SvxThesaurusDialog; ...@@ -34,12 +34,10 @@ class SvxThesaurusDialog;
class LookUpComboBox : public ComboBox class LookUpComboBox : public ComboBox
{ {
Idle m_aModifyIdle; Idle m_aModifyIdle;
Selection m_aSelection;
SvxThesaurusDialog* m_pDialog; SvxThesaurusDialog* m_pDialog;
/// disable copy ctor and assignment operator LookUpComboBox( const LookUpComboBox & ) SAL_DELETED_FUNCTION;
LookUpComboBox( const LookUpComboBox & ); LookUpComboBox& operator = ( const LookUpComboBox & ) SAL_DELETED_FUNCTION;
LookUpComboBox& operator = ( const LookUpComboBox & );
public: public:
LookUpComboBox(vcl::Window *pParent); LookUpComboBox(vcl::Window *pParent);
...@@ -78,9 +76,8 @@ class ThesaurusAlternativesCtrl ...@@ -78,9 +76,8 @@ class ThesaurusAlternativesCtrl
typedef std::map< const SvTreeListEntry *, AlternativesExtraData > UserDataMap_t; typedef std::map< const SvTreeListEntry *, AlternativesExtraData > UserDataMap_t;
UserDataMap_t m_aUserData; UserDataMap_t m_aUserData;
/// disable copy ctor and assignment operator ThesaurusAlternativesCtrl( const ThesaurusAlternativesCtrl & ) SAL_DELETED_FUNCTION;
ThesaurusAlternativesCtrl( const ThesaurusAlternativesCtrl & ); ThesaurusAlternativesCtrl & operator = ( const ThesaurusAlternativesCtrl & ) SAL_DELETED_FUNCTION;
ThesaurusAlternativesCtrl & operator = ( const ThesaurusAlternativesCtrl & );
public: public:
ThesaurusAlternativesCtrl(vcl::Window* pParent); ThesaurusAlternativesCtrl(vcl::Window* pParent);
...@@ -103,9 +100,8 @@ class ReplaceEdit : public Edit ...@@ -103,9 +100,8 @@ class ReplaceEdit : public Edit
{ {
Button * m_pBtn; Button * m_pBtn;
/// disable copy ctor and assignment operator ReplaceEdit( const ReplaceEdit & ) SAL_DELETED_FUNCTION;
ReplaceEdit( const ReplaceEdit & ); ReplaceEdit & operator = ( const ReplaceEdit & ) SAL_DELETED_FUNCTION;
ReplaceEdit & operator = ( const ReplaceEdit & );
public: public:
ReplaceEdit(vcl::Window *pParent); ReplaceEdit(vcl::Window *pParent);
......
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