summaryrefslogtreecommitdiff
path: root/desktop/source/deployment
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment')
-rw-r--r--desktop/source/deployment/dp_log.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dependencydialog.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.hxx6
-rw-r--r--desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx4
-rw-r--r--desktop/source/deployment/gui/dp_gui_extlistbox.hxx4
-rw-r--r--desktop/source/deployment/gui/dp_gui_service.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_theextmgr.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.hxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx4
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx2
-rw-r--r--desktop/source/deployment/gui/license_dialog.cxx4
-rw-r--r--desktop/source/deployment/manager/dp_commandenvironments.hxx2
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.hxx2
-rw-r--r--desktop/source/deployment/manager/dp_informationprovider.cxx2
-rw-r--r--desktop/source/deployment/manager/dp_manager.h4
-rw-r--r--desktop/source/deployment/manager/dp_managerfac.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx4
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx2
-rw-r--r--desktop/source/deployment/registry/inc/dp_backend.h6
-rw-r--r--desktop/source/deployment/registry/inc/dp_backenddb.hxx2
22 files changed, 32 insertions, 32 deletions
diff --git a/desktop/source/deployment/dp_log.cxx b/desktop/source/deployment/dp_log.cxx
index a11b0d9560e8..1e7daa70ca68 100644
--- a/desktop/source/deployment/dp_log.cxx
+++ b/desktop/source/deployment/dp_log.cxx
@@ -49,7 +49,7 @@ class ProgressLogImpl : public ::dp_misc::MutexHolder, public t_log_helper
protected:
virtual void SAL_CALL disposing() override;
- virtual ~ProgressLogImpl();
+ virtual ~ProgressLogImpl() override;
public:
ProgressLogImpl( Sequence<Any> const & args,
diff --git a/desktop/source/deployment/gui/dp_gui_dependencydialog.hxx b/desktop/source/deployment/gui/dp_gui_dependencydialog.hxx
index f5464222acdc..aee364554899 100644
--- a/desktop/source/deployment/gui/dp_gui_dependencydialog.hxx
+++ b/desktop/source/deployment/gui/dp_gui_dependencydialog.hxx
@@ -37,7 +37,7 @@ class DependencyDialog: public ModalDialog {
public:
DependencyDialog(
vcl::Window * parent, std::vector< OUString > const & dependencies);
- virtual ~DependencyDialog();
+ virtual ~DependencyDialog() override;
virtual void dispose() override;
private:
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index 9dfca89c66a0..b97a70fae2e8 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -136,7 +136,7 @@ class ExtBoxWithBtns_Impl : public ExtensionBox_Impl
public:
explicit ExtBoxWithBtns_Impl(vcl::Window* pParent);
- virtual ~ExtBoxWithBtns_Impl();
+ virtual ~ExtBoxWithBtns_Impl() override;
virtual void dispose() override;
void InitFromDialog(ExtMgrDialog *pParentDialog);
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.hxx b/desktop/source/deployment/gui/dp_gui_dialog2.hxx
index 4012cfcafaea..703803025750 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.hxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.hxx
@@ -144,7 +144,7 @@ class ExtMgrDialog : public ModelessDialog,
public:
ExtMgrDialog( vcl::Window * pParent, TheExtensionManager *pManager, Dialog::InitFlag eFlag = Dialog::InitFlag::Default );
- virtual ~ExtMgrDialog();
+ virtual ~ExtMgrDialog() override;
virtual void dispose() override;
virtual bool Notify( NotifyEvent& rNEvt ) override;
@@ -213,7 +213,7 @@ class UpdateRequiredDialog : public ModalDialog,
public:
UpdateRequiredDialog( vcl::Window * pParent, TheExtensionManager *pManager );
- virtual ~UpdateRequiredDialog();
+ virtual ~UpdateRequiredDialog() override;
virtual void dispose() override;
virtual short Execute() override;
@@ -240,7 +240,7 @@ class ShowLicenseDialog : public ModalDialog
VclPtr<VclMultiLineEdit> m_pLicenseText;
public:
ShowLicenseDialog(vcl::Window * pParent, const css::uno::Reference< css::deployment::XPackage > &xPackage);
- virtual ~ShowLicenseDialog();
+ virtual ~ShowLicenseDialog() override;
virtual void dispose() override;
};
diff --git a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
index c1b083c3ceb5..7105f899f384 100644
--- a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
+++ b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
@@ -131,7 +131,7 @@ class ProgressCmdEnv
void update_( uno::Any const & Status ) throw ( uno::RuntimeException );
public:
- virtual ~ProgressCmdEnv();
+ virtual ~ProgressCmdEnv() override;
/** When param bAskWhenInstalling = true, then the user is asked if he
agrees to install this extension. In case this extension is already installed
@@ -230,7 +230,7 @@ public:
bool isBusy();
private:
- virtual ~Thread();
+ virtual ~Thread() override;
virtual void execute() override;
diff --git a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
index 3cee982becdf..6c70e41d8623 100644
--- a/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
+++ b/desktop/source/deployment/gui/dp_gui_extlistbox.hxx
@@ -97,7 +97,7 @@ class ExtensionRemovedListener : public ::cppu::WeakImplHelper<css::lang::XEvent
public:
explicit ExtensionRemovedListener( ExtensionBox_Impl *pParent ) { m_pParent = pParent; }
- virtual ~ExtensionRemovedListener();
+ virtual ~ExtensionRemovedListener() override;
// XEventListener
@@ -168,7 +168,7 @@ class ExtensionBox_Impl : public ::svt::IExtensionListBox
void Init();
public:
explicit ExtensionBox_Impl(vcl::Window* pParent);
- virtual ~ExtensionBox_Impl();
+ virtual ~ExtensionBox_Impl() override;
virtual void dispose() override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
diff --git a/desktop/source/deployment/gui/dp_gui_service.cxx b/desktop/source/deployment/gui/dp_gui_service.cxx
index a62c07671bf2..750336ee8580 100644
--- a/desktop/source/deployment/gui/dp_gui_service.cxx
+++ b/desktop/source/deployment/gui/dp_gui_service.cxx
@@ -53,7 +53,7 @@ class MyApp : public Application
{
public:
MyApp();
- virtual ~MyApp();
+ virtual ~MyApp() override;
MyApp(const MyApp&) = delete;
const MyApp& operator=(const MyApp&) = delete;
diff --git a/desktop/source/deployment/gui/dp_gui_theextmgr.hxx b/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
index 6d7436cfb5e6..794d9258c6f0 100644
--- a/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
+++ b/desktop/source/deployment/gui/dp_gui_theextmgr.hxx
@@ -65,7 +65,7 @@ public:
TheExtensionManager( const css::uno::Reference< css::awt::XWindow > &xParent,
const css::uno::Reference< css::uno::XComponentContext > &xContext );
- virtual ~TheExtensionManager();
+ virtual ~TheExtensionManager() override;
void createDialog( const bool bCreateUpdDlg );
sal_Int16 execute();
diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
index 53548167ca85..edac3f0cb38e 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
@@ -202,7 +202,7 @@ public:
void stop();
private:
- virtual ~Thread();
+ virtual ~Thread() override;
virtual void execute() override;
diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.hxx b/desktop/source/deployment/gui/dp_gui_updatedialog.hxx
index ce0c6394ecc4..910d662a32ef 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedialog.hxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedialog.hxx
@@ -84,7 +84,7 @@ public:
css::deployment::XPackage > > & vExtensionList,
std::vector< dp_gui::UpdateData > * updateData);
- virtual ~UpdateDialog();
+ virtual ~UpdateDialog() override;
virtual void dispose() override;
virtual bool Close() override;
diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
index f8c5ea11215d..79d55a2f6109 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
@@ -87,7 +87,7 @@ public:
void stop();
private:
- virtual ~Thread();
+ virtual ~Thread() override;
virtual void execute() override;
void downloadExtensions();
@@ -121,7 +121,7 @@ class UpdateCommandEnv
cssu::Reference< cssu::XComponentContext > m_xContext;
public:
- virtual ~UpdateCommandEnv();
+ virtual ~UpdateCommandEnv() override;
UpdateCommandEnv( cssu::Reference< cssu::XComponentContext > const & xCtx,
::rtl::Reference<UpdateInstallDialog::Thread>const & thread);
diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx
index 040a9f790863..bd30805ddffa 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.hxx
@@ -59,7 +59,7 @@ public:
UpdateInstallDialog(vcl::Window * parent, std::vector<UpdateData> & aVecUpdateData,
css::uno::Reference< css::uno::XComponentContext > const & xCtx);
- virtual ~UpdateInstallDialog();
+ virtual ~UpdateInstallDialog() override;
virtual void dispose() override;
bool Close() override;
diff --git a/desktop/source/deployment/gui/license_dialog.cxx b/desktop/source/deployment/gui/license_dialog.cxx
index 212acccf4527..6d4de1fe7805 100644
--- a/desktop/source/deployment/gui/license_dialog.cxx
+++ b/desktop/source/deployment/gui/license_dialog.cxx
@@ -55,7 +55,7 @@ class LicenseView : public MultiLineEdit, public SfxListener
public:
LicenseView( vcl::Window* pParent, WinBits nStyle );
- virtual ~LicenseView();
+ virtual ~LicenseView() override;
virtual void dispose() override;
void ScrollDown( ScrollType eScroll );
@@ -96,7 +96,7 @@ struct LicenseDialogImpl : public ModalDialog
vcl::Window * pParent,
const OUString & sExtensionName,
const OUString & sLicenseText);
- virtual ~LicenseDialogImpl() { disposeOnce(); }
+ virtual ~LicenseDialogImpl() override { disposeOnce(); }
virtual void dispose() override;
virtual void Activate() override;
diff --git a/desktop/source/deployment/manager/dp_commandenvironments.hxx b/desktop/source/deployment/manager/dp_commandenvironments.hxx
index fcc44ce5858d..5f4ab2429dcb 100644
--- a/desktop/source/deployment/manager/dp_commandenvironments.hxx
+++ b/desktop/source/deployment/manager/dp_commandenvironments.hxx
@@ -40,7 +40,7 @@ protected:
void handle_(bool approve, bool abort,
css::uno::Reference< css::task::XInteractionRequest> const & xRequest );
public:
- virtual ~BaseCommandEnv();
+ virtual ~BaseCommandEnv() override;
BaseCommandEnv();
explicit BaseCommandEnv(
css::uno::Reference< css::task::XInteractionHandler> const & handler);
diff --git a/desktop/source/deployment/manager/dp_extensionmanager.hxx b/desktop/source/deployment/manager/dp_extensionmanager.hxx
index 1d9e3be32f62..c565a2f8a288 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.hxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.hxx
@@ -45,7 +45,7 @@ class ExtensionManager : private ::dp_misc::MutexHolder,
{
public:
explicit ExtensionManager( css::uno::Reference< css::uno::XComponentContext >const& xContext);
- virtual ~ExtensionManager();
+ virtual ~ExtensionManager() override;
void check();
void fireModified();
diff --git a/desktop/source/deployment/manager/dp_informationprovider.cxx b/desktop/source/deployment/manager/dp_informationprovider.cxx
index b56993456c6a..ca82cf215b6f 100644
--- a/desktop/source/deployment/manager/dp_informationprovider.cxx
+++ b/desktop/source/deployment/manager/dp_informationprovider.cxx
@@ -63,7 +63,7 @@ class PackageInformationProvider :
{
public:
explicit PackageInformationProvider( uno::Reference< uno::XComponentContext >const& xContext);
- virtual ~PackageInformationProvider();
+ virtual ~PackageInformationProvider() override;
// XPackageInformationProvider
virtual OUString SAL_CALL getPackageLocation( const OUString& extensionId )
diff --git a/desktop/source/deployment/manager/dp_manager.h b/desktop/source/deployment/manager/dp_manager.h
index ab49b7ee17d6..841eb0b9d90f 100644
--- a/desktop/source/deployment/manager/dp_manager.h
+++ b/desktop/source/deployment/manager/dp_manager.h
@@ -97,7 +97,7 @@ class PackageManagerImpl : private ::dp_misc::MutexHolder, public t_pm_helper
m_xUserInteractionHandler;
public:
- virtual ~CmdEnvWrapperImpl();
+ virtual ~CmdEnvWrapperImpl() override;
CmdEnvWrapperImpl(
css::uno::Reference<css::ucb::XCommandEnvironment>
const & xUserCmdEnv,
@@ -121,7 +121,7 @@ protected:
inline void check();
virtual void SAL_CALL disposing() override;
- virtual ~PackageManagerImpl();
+ virtual ~PackageManagerImpl() override;
inline PackageManagerImpl(
css::uno::Reference<css::uno::XComponentContext>
const & xComponentContext, OUString const & context )
diff --git a/desktop/source/deployment/manager/dp_managerfac.cxx b/desktop/source/deployment/manager/dp_managerfac.cxx
index 97bba6c5901c..cf8be3c18efc 100644
--- a/desktop/source/deployment/manager/dp_managerfac.cxx
+++ b/desktop/source/deployment/manager/dp_managerfac.cxx
@@ -55,7 +55,7 @@ protected:
virtual void SAL_CALL disposing() override;
public:
- virtual ~PackageManagerFactoryImpl();
+ virtual ~PackageManagerFactoryImpl() override;
explicit PackageManagerFactoryImpl(
Reference<XComponentContext> const & xComponentContext );
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index bfb2fd68e7da..8fc9ed308fb8 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -62,7 +62,7 @@ class EmptyNodeList:
public:
EmptyNodeList();
- virtual ~EmptyNodeList();
+ virtual ~EmptyNodeList() override;
EmptyNodeList(const EmptyNodeList&) = delete;
const EmptyNodeList& operator=(const EmptyNodeList&) = delete;
@@ -146,7 +146,7 @@ class FileDoesNotExistFilter
css::uno::Reference< css::ucb::XCommandEnvironment > m_xCommandEnv;
public:
- virtual ~FileDoesNotExistFilter();
+ virtual ~FileDoesNotExistFilter() override;
explicit FileDoesNotExistFilter(
const css::uno::Reference< css::ucb::XCommandEnvironment >& xCmdEnv);
diff --git a/desktop/source/deployment/registry/dp_registry.cxx b/desktop/source/deployment/registry/dp_registry.cxx
index 02419477b926..d1b77a020af9 100644
--- a/desktop/source/deployment/registry/dp_registry.cxx
+++ b/desktop/source/deployment/registry/dp_registry.cxx
@@ -94,7 +94,7 @@ protected:
inline void check();
virtual void SAL_CALL disposing() override;
- virtual ~PackageRegistryImpl();
+ virtual ~PackageRegistryImpl() override;
PackageRegistryImpl() : t_helper( getMutex() ) {}
diff --git a/desktop/source/deployment/registry/inc/dp_backend.h b/desktop/source/deployment/registry/inc/dp_backend.h
index cb7b8fcbe026..d94d30f1b25c 100644
--- a/desktop/source/deployment/registry/inc/dp_backend.h
+++ b/desktop/source/deployment/registry/inc/dp_backend.h
@@ -89,7 +89,7 @@ protected:
css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv )
= 0;
- virtual ~Package();
+ virtual ~Package() override;
Package( ::rtl::Reference<PackageRegistryBackend> const & myBackend,
OUString const & url,
OUString const & name,
@@ -109,7 +109,7 @@ public:
const OUString m_shortDescr;
const sal_uInt16 m_smallIcon;
public:
- virtual ~TypeInfo();
+ virtual ~TypeInfo() override;
TypeInfo( OUString const & mediaType,
OUString const & fileFilter,
OUString const & shortDescr,
@@ -308,7 +308,7 @@ protected:
void check();
virtual void SAL_CALL disposing() override;
- virtual ~PackageRegistryBackend();
+ virtual ~PackageRegistryBackend() override;
PackageRegistryBackend(
css::uno::Sequence<css::uno::Any> const & args,
css::uno::Reference<css::uno::XComponentContext> const & xContext );
diff --git a/desktop/source/deployment/registry/inc/dp_backenddb.hxx b/desktop/source/deployment/registry/inc/dp_backenddb.hxx
index 8731cdc3d51e..85b4ee684bcc 100644
--- a/desktop/source/deployment/registry/inc/dp_backenddb.hxx
+++ b/desktop/source/deployment/registry/inc/dp_backenddb.hxx
@@ -155,7 +155,7 @@ class RegisteredDb: public BackendDb
public:
RegisteredDb( css::uno::Reference<css::uno::XComponentContext> const & xContext,
OUString const & url);
- virtual ~RegisteredDb() {};
+ virtual ~RegisteredDb() override {};
void addEntry(OUString const & url);