diff options
Diffstat (limited to 'src/plugins/Effect/monotostereo/monotostereoplugin.cpp')
| -rw-r--r-- | src/plugins/Effect/monotostereo/monotostereoplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Effect/monotostereo/monotostereoplugin.cpp b/src/plugins/Effect/monotostereo/monotostereoplugin.cpp index b043d3f65..7a852bd0e 100644 --- a/src/plugins/Effect/monotostereo/monotostereoplugin.cpp +++ b/src/plugins/Effect/monotostereo/monotostereoplugin.cpp @@ -24,7 +24,7 @@ MonoToStereoPlugin::MonoToStereoPlugin() : Effect() { - m_tmp = 0; + m_tmp = nullptr; m_size = 0; m_enabled = false; } @@ -34,7 +34,7 @@ MonoToStereoPlugin::~MonoToStereoPlugin() if(m_tmp) { delete[] m_tmp; - m_tmp = 0; + m_tmp = nullptr; } } |
