summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-03-08 14:41:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-03-09 07:28:25 +0100
commit313744d4f23f242f5ee979d229fe394211ff7ffd (patch)
tree7c2e83e0eb5eb2b133c0eaa1a61bb179b554f14d /framework
parentccb6b8967ce3d84bb141379e51a339544f753446 (diff)
loplugin:unusedmethods
Change-Id: I242f56f2bc5dc8fce6db1ba8f1f8269da4fec0fa Reviewed-on: https://gerrit.libreoffice.org/68938 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/jobs/jobresult.hxx1
-rw-r--r--framework/source/jobs/jobresult.cxx13
2 files changed, 0 insertions, 14 deletions
diff --git a/framework/inc/jobs/jobresult.hxx b/framework/inc/jobs/jobresult.hxx
index a083bee27808..4663cfc77895 100644
--- a/framework/inc/jobs/jobresult.hxx
+++ b/framework/inc/jobs/jobresult.hxx
@@ -91,7 +91,6 @@ class JobResult final
public:
- JobResult( );
JobResult( const css::uno::Any& aResult );
JobResult( const JobResult& rCopy );
~JobResult( );
diff --git a/framework/source/jobs/jobresult.cxx b/framework/source/jobs/jobresult.cxx
index 86ae9b5f0dea..dc3075472124 100644
--- a/framework/source/jobs/jobresult.cxx
+++ b/framework/source/jobs/jobresult.cxx
@@ -30,19 +30,6 @@
namespace framework{
/**
- @short standard dtor
- @descr It does nothing else ...
- but it marks this new instance as non valid!
-*/
-JobResult::JobResult()
-{
- // reset the flag mask!
- // It will reset the accessible state of this object.
- // That can be useful if something will fail here ...
- m_eParts = E_NOPART;
-}
-
-/**
@short special ctor
@descr It initialize this new instance with a pure job execution result
and analyze it. Doing so, we update our other members.