summaryrefslogtreecommitdiffstats
path: root/src/plugins/directshow/common/directshoweventloop.h
diff options
context:
space:
mode:
authorVaL Doroshchuk <valentyn.doroshchuk@qt.io>2019-07-23 10:33:51 +0200
committerVaL Doroshchuk <valentyn.doroshchuk@qt.io>2019-07-23 10:33:51 +0200
commit14d6166b2790b37906fd76248d955659ff78622f (patch)
treef02ec37165b5ae47beb238aa23031e6e2106502f /src/plugins/directshow/common/directshoweventloop.h
parente99a2e1701179d0d28ef1d1eac696d480894f4bb (diff)
parent2eb0a98f1de07782004a5a4261cb5d2c46ca6d15 (diff)
Merge branch 'dev' of git://code.qt.io/qt/qtmultimedia into wip/qt6
Diffstat (limited to 'src/plugins/directshow/common/directshoweventloop.h')
-rw-r--r--src/plugins/directshow/common/directshoweventloop.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/directshow/common/directshoweventloop.h b/src/plugins/directshow/common/directshoweventloop.h
index a29274b7b..984bd23a4 100644
--- a/src/plugins/directshow/common/directshoweventloop.h
+++ b/src/plugins/directshow/common/directshoweventloop.h
@@ -54,7 +54,7 @@ class DirectShowEventLoop : public QObject
{
Q_OBJECT
public:
- DirectShowEventLoop(QObject *parent = 0);
+ DirectShowEventLoop(QObject *parent = nullptr);
~DirectShowEventLoop() override;
void wait(QMutex *mutex);
@@ -68,8 +68,8 @@ protected:
private:
void processEvents();
- DirectShowPostedEvent *m_postsHead;
- DirectShowPostedEvent *m_postsTail;
+ DirectShowPostedEvent *m_postsHead = nullptr;
+ DirectShowPostedEvent *m_postsTail = nullptr;
HANDLE m_eventHandle;
HANDLE m_waitHandle;
QMutex m_mutex;