summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
index 16bcc0b5e687..7cf0ae366594 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
@@ -224,7 +224,6 @@ private:
uno::Reference< task::XInteractionHandler > m_xInteractionHdl;
// guarded by Application::GetSolarMutex():
- uno::Reference< task::XAbortChannel > m_abort;
bool m_stop;
};
@@ -250,15 +249,10 @@ UpdateDialog::Thread::Thread(
}
void UpdateDialog::Thread::stop() {
- uno::Reference< task::XAbortChannel > abort;
{
SolarMutexGuard g;
- abort = m_abort;
m_stop = true;
}
- if (abort.is()) {
- abort->sendAbort();
- }
m_updateInformation->cancel();
}