diff options
| author | 2018-12-03 20:26:31 -0500 | |
|---|---|---|
| committer | 2018-12-03 20:26:31 -0500 | |
| commit | 3820267cf16d09b7e8e2d7a8f30b7a340f300934 (patch) | |
| tree | 0b8c79a7135d8190bfdb75892c876cfba77c1444 /src/modules/dcc/DccVoiceCodec.cpp | |
| parent | Remove reliance Q_DISABLE_COPY macro (diff) | |
| download | KVIrc-3820267cf16d09b7e8e2d7a8f30b7a340f300934.tar.gz KVIrc-3820267cf16d09b7e8e2d7a8f30b7a340f300934.tar.bz2 KVIrc-3820267cf16d09b7e8e2d7a8f30b7a340f300934.zip | |
Convert 0s and NULLs to nullptr
Diffstat (limited to 'src/modules/dcc/DccVoiceCodec.cpp')
| -rw-r--r-- | src/modules/dcc/DccVoiceCodec.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/dcc/DccVoiceCodec.cpp b/src/modules/dcc/DccVoiceCodec.cpp index 1028e7c72..5e70d176c 100644 --- a/src/modules/dcc/DccVoiceCodec.cpp +++ b/src/modules/dcc/DccVoiceCodec.cpp @@ -263,19 +263,19 @@ DccVideoTheoraCodec::DccVideoTheoraCodec() : DccVideoCodec() { m_szName = "theora"; - m_pEncoder = 0; - m_pDecoder = 0; + m_pEncoder = nullptr; + m_pDecoder = nullptr; } DccVideoTheoraCodec::~DccVideoTheoraCodec() { if(m_pEncoder) delete m_pEncoder; - m_pEncoder = 0; + m_pEncoder = nullptr; if(m_pDecoder) delete m_pDecoder; - m_pDecoder = 0; + m_pDecoder = nullptr; } void DccVideoTheoraCodec::encodeVideo(KviDataBuffer * videoSignal, KviDataBuffer * stream) |
