summaryrefslogtreecommitdiffstats
path: root/framework/inc/jobs
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-07 15:49:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 06:11:28 +0000
commit525a45f22f591d8046ca95af3073ed27fd283ef0 (patch)
treed06550b02fdc6d33c5df7c5aa7b223a7df7ae328 /framework/inc/jobs
parentloplugin:unnecessaryvirtual in hwpfilter..rsc (diff)
downloadcore-525a45f22f591d8046ca95af3073ed27fd283ef0.tar.gz
core-525a45f22f591d8046ca95af3073ed27fd283ef0.zip
loplugin:unnecessaryvirtual in framework
Change-Id: I893bf955e45e661e3ec440dbd530fca22931c23b Reviewed-on: https://gerrit.libreoffice.org/30666 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc/jobs')
-rw-r--r--framework/inc/jobs/configaccess.hxx4
-rw-r--r--framework/inc/jobs/jobdata.hxx4
-rw-r--r--framework/inc/jobs/jobresult.hxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/jobs/configaccess.hxx b/framework/inc/jobs/configaccess.hxx
index 9318afe236d2..116d563758c8 100644
--- a/framework/inc/jobs/configaccess.hxx
+++ b/framework/inc/jobs/configaccess.hxx
@@ -36,7 +36,7 @@ namespace framework{
instead of using soecialize config items of the svtools
project. This class can wrapp such configuration access.
*/
-class FWI_DLLPUBLIC ConfigAccess
+class FWI_DLLPUBLIC ConfigAccess final
{
public:
@@ -78,7 +78,7 @@ class FWI_DLLPUBLIC ConfigAccess
ConfigAccess( const css::uno::Reference< css::uno::XComponentContext >& rxContext,
const OUString& sRoot );
- virtual ~ConfigAccess();
+ ~ConfigAccess();
void open ( EOpenMode eMode );
void close ( );
diff --git a/framework/inc/jobs/jobdata.hxx b/framework/inc/jobs/jobdata.hxx
index a6bd78d7f29d..08ab0e1d97c9 100644
--- a/framework/inc/jobs/jobdata.hxx
+++ b/framework/inc/jobs/jobdata.hxx
@@ -41,7 +41,7 @@ namespace framework{
(or proxy) for all config data of a registered job.
But it doesn't implement any execute functionality!
*/
-class JobData
+class JobData final
{
public:
@@ -180,7 +180,7 @@ class JobData
JobData( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
JobData( const JobData& rCopy );
- virtual ~JobData( );
+ ~JobData( );
JobData& operator=( const JobData& rCopy );
diff --git a/framework/inc/jobs/jobresult.hxx b/framework/inc/jobs/jobresult.hxx
index 3b5c4875acf9..0d399c461ae5 100644
--- a/framework/inc/jobs/jobresult.hxx
+++ b/framework/inc/jobs/jobresult.hxx
@@ -36,7 +36,7 @@ namespace framework{
data from the code place where the job was finished
to the outside code, where e.g. listener must be notified.
*/
-class JobResult
+class JobResult final
{
// types
@@ -107,7 +107,7 @@ class JobResult
JobResult( );
JobResult( const css::uno::Any& aResult );
JobResult( const JobResult& rCopy );
- virtual ~JobResult( );
+ ~JobResult( );
JobResult& operator=( const JobResult& rCopy );