summaryrefslogtreecommitdiff
path: root/sfx2/source/bastyp/progress.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 11:07:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 14:23:07 +0200
commitd7824bf16898d8cb776420e0c2bff82e6df61b86 (patch)
tree88405234c55eb24a3d7770c833ac8eeea2db412e /sfx2/source/bastyp/progress.cxx
parentf05d0d05829dd51cb9d8071ac97cc219779ee40a (diff)
loplugin:unusedfields in sfx2 part2
Change-Id: I227b643641250d47ac6b2218f57ddb231765960e Reviewed-on: https://gerrit.libreoffice.org/39038 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/bastyp/progress.cxx')
-rw-r--r--sfx2/source/bastyp/progress.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sfx2/source/bastyp/progress.cxx b/sfx2/source/bastyp/progress.cxx
index 7a0556b6cd79..0676b2d8b139 100644
--- a/sfx2/source/bastyp/progress.cxx
+++ b/sfx2/source/bastyp/progress.cxx
@@ -54,10 +54,8 @@ struct SfxProgress_Impl
OUString aText, aStateText;
sal_uIntPtr nMax;
clock_t nCreate;
- clock_t nNextReschedule;
bool bLocked;
bool bWaitMode;
- bool bAllowRescheduling;
bool bRunning;
SfxProgress* pActiveProgress;
@@ -96,10 +94,8 @@ void SfxProgress_Impl::Enable_Impl()
SfxProgress_Impl::SfxProgress_Impl()
: nMax(0)
, nCreate(0)
- , nNextReschedule(0)
, bLocked(false)
, bWaitMode(false)
- , bAllowRescheduling(false)
, bRunning(false)
, pActiveProgress(nullptr)
, pWorkWin(nullptr)
@@ -137,7 +133,6 @@ SfxProgress::SfxProgress
bSuspended(true)
{
pImpl->bRunning = true;
- pImpl->bAllowRescheduling = Application::IsInExecute();
pImpl->xObjSh = pObjSh;
pImpl->aText = rText;
@@ -145,7 +140,6 @@ SfxProgress::SfxProgress
pImpl->bLocked = false;
pImpl->bWaitMode = bWait;
pImpl->nCreate = Get10ThSec();
- pImpl->nNextReschedule = pImpl->nCreate;
SAL_INFO(
"sfx.bastyp",
"SfxProgress: created for '" << rText << "' at " << pImpl->nCreate