diff --git a/openlp/core/threading.py b/openlp/core/threading.py index 9a4043292..38c68638a 100644 --- a/openlp/core/threading.py +++ b/openlp/core/threading.py @@ -24,10 +24,11 @@ The :mod:`openlp.core.threading` module contains some common threading code """ from PyQt5 import QtCore +from openlp.core.common.mixins import LogMixin from openlp.core.common.registry import Registry -class ThreadWorker(QtCore.QObject): +class ThreadWorker(QtCore.QObject, LogMixin): """ The :class:`~openlp.core.threading.ThreadWorker` class provides a base class for all worker objects """