diff options
-rw-r--r-- | dxr3outputthread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dxr3outputthread.h b/dxr3outputthread.h index 8ac46ee..a0977b0 100644 --- a/dxr3outputthread.h +++ b/dxr3outputthread.h @@ -41,7 +41,7 @@ public: cThread::Start(); }; */ - void SetStopSignal(); + void SetStopSignal(); // can be removed when only VDR >= 1.3.29 supported bool NeedResync() { return m_bNeedResync; @@ -53,11 +53,11 @@ public: protected: virtual void Action() = 0; - bool GetStopSignal(); + bool GetStopSignal(); // can be replaced by Running() in VDR >= 1.3.29 cDxr3Interface& m_dxr3Device; cDxr3SyncBuffer& m_buffer; - bool m_bStopThread; + bool m_bStopThread; // can be removed when only VDR >= 1.3.29 supported bool m_bNeedResync; private: |