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

loplugin:deletedspecial

Change-Id: I1553902c1f7c30f2c64d2210dc301c5ae50c6c4b
üst 86fa2dcb
......@@ -56,9 +56,8 @@
Context * m_pContext;
InteractionHandler m_xHandler;
private:
// not implemented - suppress copy
ConfigurationErrorHandler(const ConfigurationErrorHandler&);
void operator=(const ConfigurationErrorHandler&);
ConfigurationErrorHandler(const ConfigurationErrorHandler&) SAL_DELETED_FUNCTION;
void operator=(const ConfigurationErrorHandler&) SAL_DELETED_FUNCTION;
};
......
......@@ -76,8 +76,8 @@ public:
::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage> getPackage() const { return m_xPackage; }
private:
SelectedPackage(SelectedPackage &); // not defined
void operator =(SelectedPackage &); // not defined
SelectedPackage(SelectedPackage &) SAL_DELETED_FUNCTION;
void operator =(SelectedPackage &) SAL_DELETED_FUNCTION;
::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage> m_xPackage;
};
......
......@@ -41,8 +41,8 @@ public:
virtual ~DependencyDialog();
private:
DependencyDialog(DependencyDialog &); // not defined
void operator =(DependencyDialog &); // not defined
DependencyDialog(DependencyDialog &) SAL_DELETED_FUNCTION;
void operator =(DependencyDialog &) SAL_DELETED_FUNCTION;
ListBox* m_list;
};
......
......@@ -87,8 +87,8 @@ public:
bool isBusy();
private:
ExtensionCmdQueue(ExtensionCmdQueue &); // not defined
void operator =(ExtensionCmdQueue &); // not defined
ExtensionCmdQueue(ExtensionCmdQueue &) SAL_DELETED_FUNCTION;
void operator =(ExtensionCmdQueue &) SAL_DELETED_FUNCTION;
class Thread;
......
......@@ -95,8 +95,8 @@ public:
com::sun::star::uno::Sequence< com::sun::star::uno::Sequence< OUString > > &rItemList );
private:
UpdateDialog(UpdateDialog &); // not defined
void operator =(UpdateDialog &); // not defined
UpdateDialog(UpdateDialog &) SAL_DELETED_FUNCTION;
void operator =(UpdateDialog &) SAL_DELETED_FUNCTION;
struct DisabledUpdate;
struct SpecificError;
......@@ -116,8 +116,8 @@ private:
sal_uInt16 getItemCount() const;
private:
CheckListBox(UpdateDialog::CheckListBox &); // not defined
void operator =(UpdateDialog::CheckListBox &); // not defined
CheckListBox(UpdateDialog::CheckListBox &) SAL_DELETED_FUNCTION;
void operator =(UpdateDialog::CheckListBox &) SAL_DELETED_FUNCTION;
virtual void MouseButtonDown(MouseEvent const & event) SAL_OVERRIDE;
virtual void MouseButtonUp(MouseEvent const & event) SAL_OVERRIDE;
......
......@@ -211,7 +211,6 @@ UpdateInstallDialog::UpdateInstallDialog(
m_xComponentContext(xCtx),
m_bError(false),
m_bNoEntry(true),
m_bActivated(false),
m_sInstalling(DPGUI_RESSTR(RID_DLG_UPDATE_INSTALL_INSTALLING)),
m_sFinished(DPGUI_RESSTR(RID_DLG_UPDATE_INSTALL_FINISHED)),
m_sNoErrors(DPGUI_RESSTR(RID_DLG_UPDATE_INSTALL_NO_ERRORS)),
......
......@@ -65,8 +65,8 @@ public:
virtual short Execute() SAL_OVERRIDE;
private:
UpdateInstallDialog(UpdateInstallDialog &); // not defined
void operator =(UpdateInstallDialog &); // not defined
UpdateInstallDialog(UpdateInstallDialog &) SAL_DELETED_FUNCTION;
void operator =(UpdateInstallDialog &) SAL_DELETED_FUNCTION;
class Thread;
friend class Thread;
......@@ -94,7 +94,6 @@ private:
//Signals that an error occurred during download and installation
bool m_bError;
bool m_bNoEntry;
bool m_bActivated;
OUString m_sInstalling;
OUString m_sFinished;
......
......@@ -83,8 +83,8 @@ public:
void erase(OUString const & id, OUString const & fileName);
private:
ActivePackages(ActivePackages &); // not defined
void operator =(ActivePackages &); // not defined
ActivePackages(ActivePackages &) SAL_DELETED_FUNCTION;
void operator =(ActivePackages &) SAL_DELETED_FUNCTION;
#if HAVE_FEATURE_EXTENSIONS
::dp_misc::PersistentMap m_map;
#endif
......
......@@ -47,8 +47,8 @@ private:
css::uno::Reference<css::xml::dom::XDocument> m_doc;
css::uno::Reference<css::xml::xpath::XXPathAPI> m_xpathApi;
BackendDb(BackendDb const &);
BackendDb & operator = (BackendDb const &);
BackendDb(BackendDb const &) SAL_DELETED_FUNCTION;
BackendDb & operator = (BackendDb const &) SAL_DELETED_FUNCTION;
protected:
const css::uno::Reference<css::uno::XComponentContext> m_xContext;
......
......@@ -35,10 +35,8 @@ namespace desktop {
class UnxSplashScreen : public ::cppu::WeakImplHelper3< css::task::XStatusIndicator, css::lang::XInitialization, css::lang::XServiceInfo >
{
private:
// don't allow anybody but ourselves to create instances of this class
UnxSplashScreen( const UnxSplashScreen& );
UnxSplashScreen( void );
UnxSplashScreen operator =( const UnxSplashScreen& );
UnxSplashScreen( const UnxSplashScreen& ) SAL_DELETED_FUNCTION;
UnxSplashScreen operator =( const UnxSplashScreen& ) SAL_DELETED_FUNCTION;
virtual ~UnxSplashScreen();
......
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