diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-13 12:04:55 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-13 11:20:41 +0000 |
commit | f87e86d0d04537df28a127fdabb14b68c52f626c (patch) | |
tree | bd558d95bcb81c22076d7ca7093d0e397e8a0187 | |
parent | 61fb1d4de37f88f6408a483c3713a373340d6fb3 (diff) |
tdf#93404: Forgot to launch WakeUpThread
...in 017f250764ec7b4ecb82ac19f5b3f68cadf1bf56 "Ensure WakeUpThread is joined
before exit"
Change-Id: Iaa5a5772f099b11229bd40c3cc10d863ef0ad5b3
(cherry picked from commit 54f10a9654b617c4c993044e52e7bd40d0151c53)
Reviewed-on: https://gerrit.libreoffice.org/17697
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | framework/source/helper/statusindicatorfactory.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/source/helper/statusindicatorfactory.cxx b/framework/source/helper/statusindicatorfactory.cxx index 3b4001a28fdf..a0a4fdee636e 100644 --- a/framework/source/helper/statusindicatorfactory.cxx +++ b/framework/source/helper/statusindicatorfactory.cxx @@ -544,6 +544,7 @@ void StatusIndicatorFactory::impl_startWakeUpThread() if (!m_pWakeUp.is()) { m_pWakeUp = new WakeUpThread(this); + m_pWakeUp->launch(); } } |