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